rw-stream-sink 0.2.0

Adaptator between Stream/Sink and AsyncRead/AsyncWrite
Documentation

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::read] will read from the stream's incoming packets.