pub trait BytesStream {
fn poll_bytes(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Option<Bytes>>>;
}
Expand description
A stream that returns Bytes.
pub trait BytesStream {
fn poll_bytes(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Option<Bytes>>>;
}
A stream that returns Bytes.