pub type ElectrumSslStream = StreamOwned<ClientConnection, TcpStream>;
Expand description

Transport type used to establish a Rustls TLS encrypted/authenticated connection with the server

Aliased Type§

struct ElectrumSslStream {
    pub conn: ClientConnection,
    pub sock: TcpStream,
}

Fields§

§conn: ClientConnection

Our connection

§sock: TcpStream

The underlying transport, like a socket