type Stream = MaybeTlsStream<TcpStream>;Expand description
The socket a STOMP session runs over, TLS or not.
Aliased Type§
enum Stream {
Plain(TcpStream),
Server(Box<TlsStream<TcpStream>>),
Client(Box<TlsStream<TcpStream>>),
}type Stream = MaybeTlsStream<TcpStream>;The socket a STOMP session runs over, TLS or not.
enum Stream {
Plain(TcpStream),
Server(Box<TlsStream<TcpStream>>),
Client(Box<TlsStream<TcpStream>>),
}