Trait TlsTransport

Source
pub trait TlsTransport:
    AsyncRead
    + AsyncWrite
    + Send
    + Unpin
    + 'static { }
Expand description

The data stream that carries the encrypted TLS data. Typically this is a TCP stream.

Implementors§

Source§

impl<T: AsyncRead + AsyncWrite + Send + Unpin + ?Sized + 'static> TlsTransport for T