Type Alias rustls_connector::TlsStream

source ·
pub type TlsStream<S> = StreamOwned<ClientConnection, S>;
Expand description

A TLS stream

Aliased Type§

struct TlsStream<S> {
    pub conn: ClientConnection,
    pub sock: S,
}

Fields§

§conn: ClientConnection

Our connection

§sock: S

The underlying transport, like a socket