Type Definition blobnet::ReadStream

source ·
pub type ReadStream<'a> = Pin<Box<dyn AsyncRead + Send + 'a>>;
Expand description

A stream of bytes from some data source.

Trait Implementations§

source§

impl<'a> From<BlobRead<'a>> for ReadStream<'a>

source§

fn from(val: BlobRead<'a>) -> Self

Converts to this type from the input type.