Trait BufStream

Source
pub trait BufStream {
    type Item: Buf;
    type Error;

    // Required method
    fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>;

    // Provided methods
    fn size_hint(&self) -> SizeHint { ... }
    fn chain<T>(self, other: T) -> Chain<Self, T>
       where Self: Sized,
             T: BufStream<Error = Self::Error> { ... }
    fn collect<T>(self) -> Collect<Self, T>
       where Self: Sized,
             T: FromBufStream { ... }
}
Expand description

An asynchronous stream of bytes.

BufStream asynchronously yields values implementing Buf, i.e. byte buffers.

Required Associated Types§

Source

type Item: Buf

Values yielded by the BufStream.

Source

type Error

The error type this BufStream might generate.

Required Methods§

Source

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Attempt to pull out the next buffer of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted.

§Return value

There are several possible return values, each indicating a distinct stream state:

  • Ok(Async::NotReady) means that this stream’s next value is not ready yet. Implementations will ensure that the current task will be notified when the next value may be ready.

  • Ok(Async::Ready(Some(buf))) means that the stream has successfully produced a value, buf, and may produce further values on subsequent poll calls.

  • Ok(Async::Ready(None)) means that the stream has terminated, and poll should not be invoked again.

§Panics

Once a stream is finished, i.e. Ready(None) has been returned, further calls to poll may result in a panic or other “bad behavior”.

Provided Methods§

Source

fn size_hint(&self) -> SizeHint

Returns the bounds on the remaining length of the iterator.

§Implementation notes

It is not enforced that a BufStreaam yields the declared amount of data. A buggy implementation may yield less than the lower bound or more than the upper bound.

size_hint() is primarily intended to be used for optimizations such as reserving space for the data, but must not be trusted to e.g. omit bounds checks in unsafe code. An incorrect implemeentation of size_hint() should not lead to memory safety violations.

That said, the implementation should provide a correct estimation, because otherwise it would be a violation of the trait’s protocol.

Source

fn chain<T>(self, other: T) -> Chain<Self, T>
where Self: Sized, T: BufStream<Error = Self::Error>,

Takes two buf streams and creates a new buf stream over both in sequence.

chain() will return a new BufStream value which will first yield all data from self then all data from other.

In other words, it links two buf streams together, in a chain.

Source

fn collect<T>(self) -> Collect<Self, T>
where Self: Sized, T: FromBufStream,

Consumes all data from self, storing it in byte storage of type T.

Implementations on Foreign Types§

Source§

impl BufStream for &'static str

Source§

type Item = Cursor<&'static [u8]>

Source§

type Error = Never

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

impl BufStream for String

Source§

type Item = Cursor<Vec<u8>>

Source§

type Error = Never

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

impl BufStream for Bytes

Source§

type Item = Cursor<Bytes>

Source§

type Error = ()

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

impl BufStream for Body

Source§

type Item = Chunk

Source§

type Error = Error

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

fn size_hint(&self) -> SizeHint

Source§

impl BufStream for File

Source§

type Item = Cursor<BytesMut>

Source§

type Error = Error

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

impl<A, B> BufStream for Either<A, B>
where A: BufStream, B: BufStream<Item = A::Item, Error = A::Error>,

Source§

type Item = <A as BufStream>::Item

Source§

type Error = <A as BufStream>::Error

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

fn size_hint(&self) -> SizeHint

Source§

impl<B> BufStream for Option<B>
where B: BufStream,

Source§

type Item = <B as BufStream>::Item

Source§

type Error = <B as BufStream>::Error

Source§

fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>

Source§

fn size_hint(&self) -> SizeHint

Implementors§

Source§

impl<Item, Error> BufStream for Empty<Item, Error>
where Item: Buf,

Source§

type Item = Item

Source§

type Error = Error

Source§

impl<T> BufStream for CompressStream<T>
where T: BufStream,

Source§

impl<T> BufStream for StdStream<T>
where T: Stream, T::Item: Buf,

Source§

type Item = <T as Stream>::Item

Source§

type Error = <T as Stream>::Error

Source§

impl<T, U> BufStream for Chain<T, U>
where T: BufStream, U: BufStream<Error = T::Error>,

Source§

type Item = Either2<<T as BufStream>::Item, <U as BufStream>::Item>

Source§

type Error = <T as BufStream>::Error

Source§

impl<T: BufStream> BufStream for Map<T>