pub trait TlsProvider: Debug {
    fn get_tls_upgrade(&self) -> Option<Box<dyn TlsUpgrade + 'static, Global>>;
}

Required methods

Implementors