pub trait BytesStream { fn poll_bytes( self: Pin<&mut Self>, cx: &mut Context<'_> ) -> Poll<Result<Option<Bytes>>>; }
A stream that returns Bytes.
The returned bytes are never allowed to be empty.