Expand description
A collection of traits and implementations for async streams.
Structs§
- Read
Half - The readable half of an object returned from
AsyncRead::split
. - Read
Write Pair - If you would like to combine an input stream and an output stream into a single stream to talk websockets over then this is the struct for you!
- TcpStream
- An I/O object representing a TCP stream connected to a remote endpoint.
- Write
Half - The writable half of an object returned from
AsyncRead::split
.
Traits§
- Async
Read - Read bytes asynchronously.
- Async
Write - Writes bytes asynchronously.
- Stream
- 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.