pub type ConnectStream = ClientStream<TcpStream>;
Type alias for the stream type of the connect_async() functions.
connect_async()
enum ConnectStream { Plain(TcpStream), Tls(TlsStream<TcpStream>), }
Unencrypted socket stream.
Encrypted socket stream.