Trait ClientHelloProvider

Source
pub trait ClientHelloProvider: ClientHelloProviderPriv { }
Available on crate feature tls and (crate features tls or http) only.
Expand description

Sealed trait used by ja3/ja4 computation functions, to allow you to immediately compute from either a ClientHello or a ClientConfig data structure.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<P: ClientHelloProviderPriv> ClientHelloProvider for P