Trait websocket::stream::async::Stream [] [src]

pub trait Stream: AsyncRead + AsyncWrite { }

A stream that can be read from and written to asynchronously. This let's us abstract over many async streams like tcp, ssl, udp, ssh, etc.

Implementors