pub trait SetupTls: Debug + Send + 'static {
    fn setup(
        self,
        builder: TlsConnectorBuilder
    ) -> Result<NativeTlsConnector, Error>; }
Expand description

Trait used when setting up tls to modify the setup process

Required Methods§

Accepts a connection builder and returns a connector if possible

Implementors§