pub trait BytesStream: Stream<Item = Result<Bytes>> + Unpin + Send { }
Expand description

BytesStream represents a stream of bytes.

This trait is used as alias to Stream<Item = Result<Bytes>> + Unpin + Send.

Implementors