Trait native_tls::backend::openssl::TlsAcceptorBuilderExt
[−]
[src]
pub trait TlsAcceptorBuilderExt {
fn from_openssl(builder: SslAcceptorBuilder) -> Self;
fn builder(&self) -> &SslAcceptorBuilder;
fn builder_mut(&mut self) -> &mut SslAcceptorBuilder;
}OpenSSL-specific extensions to TlsAcceptorBuilder.
Required Methods
fn from_openssl(builder: SslAcceptorBuilder) -> Self
Initialize TlsAcceptorBuilderExt from an SslAcceptorBuilder.
fn builder(&self) -> &SslAcceptorBuilder
Returns a shared reference to the inner SslAcceptorBuilder.
fn builder_mut(&mut self) -> &mut SslAcceptorBuilder
Returns a mutable reference to the inner SslAcceptorBuilder.
Implementors
impl TlsAcceptorBuilderExt for TlsAcceptorBuilder