Struct monoio_rustls::TlsAcceptor
source · pub struct TlsAcceptor { /* private fields */ }
Expand description
A wrapper around a rustls::ServerConfig
, providing an async accept
method.
Implementations§
source§impl TlsAcceptor
impl TlsAcceptor
pub async fn accept<IO>(&self, stream: IO) -> Result<TlsStream<IO>, TlsError>where IO: AsyncReadRent + AsyncWriteRent,
Trait Implementations§
source§impl Clone for TlsAcceptor
impl Clone for TlsAcceptor
source§fn clone(&self) -> TlsAcceptor
fn clone(&self) -> TlsAcceptor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl From<Arc<ServerConfig>> for TlsAcceptor
impl From<Arc<ServerConfig>> for TlsAcceptor
source§fn from(inner: Arc<ServerConfig>) -> TlsAcceptor
fn from(inner: Arc<ServerConfig>) -> TlsAcceptor
Converts to this type from the input type.
source§impl From<ServerConfig> for TlsAcceptor
impl From<ServerConfig> for TlsAcceptor
source§fn from(inner: ServerConfig) -> TlsAcceptor
fn from(inner: ServerConfig) -> TlsAcceptor
Converts to this type from the input type.