Enum futures_rustls::TlsStream [−][src]
Expand description
Unified TLS stream type
This abstracts over the inner client::TlsStream and server::TlsStream, so you can use
a single type to keep both client- and server-initiated TLS-encrypted connections.
Variants
Client(TlsStream<T>)Tuple Fields of Client
0: TlsStream<T>Server(TlsStream<T>)Tuple Fields of Server
0: TlsStream<T>Implementations
Trait Implementations
Attempt to read from the AsyncRead into buf. Read more