Struct tokio_native_tls::native_tls::TlsAcceptorBuilder [−][src]
pub struct TlsAcceptorBuilder { /* fields omitted */ }A builder for TlsAcceptors.
Implementations
impl TlsAcceptorBuilder[src]
impl TlsAcceptorBuilder[src]pub fn min_protocol_version(
&mut self,
protocol: Option<Protocol>
) -> &mut TlsAcceptorBuilder[src]
&mut self,
protocol: Option<Protocol>
) -> &mut TlsAcceptorBuilder
Sets the minimum supported protocol version.
A value of None enables support for the oldest protocols supported by the implementation.
Defaults to Some(Protocol::Tlsv10).
pub fn max_protocol_version(
&mut self,
protocol: Option<Protocol>
) -> &mut TlsAcceptorBuilder[src]
&mut self,
protocol: Option<Protocol>
) -> &mut TlsAcceptorBuilder
Sets the maximum supported protocol version.
A value of None enables support for the newest protocols supported by the implementation.
Defaults to None.
pub fn build(&self) -> Result<TlsAcceptor, Error>[src]
Creates a new TlsAcceptor.