Expand description
This crate provides the RwStreamSink
type. It wraps around a Stream
and Sink
that produces and accepts byte arrays, and implements
AsyncRead
and AsyncWrite
.
Each call to AsyncWrite::poll_write
will send one packet to the sink.
Calls to AsyncRead::poll_read
will read from the stream’s incoming packets.
Structs§
- RwStream
Sink - Wraps a
Stream
andSink
whose items are buffers. ImplementsAsyncRead
andAsyncWrite
.