Trait websocket::stream::Stream

source ·
pub trait Stream: Read + Write { }
Expand description

Represents a stream that can be read from, and written to. This is an abstraction around readable and writable things to be able to speak websockets over ssl, tcp, unix sockets, etc.

Implementors