[][src]Struct tokio_buf::util::Chain

pub struct Chain<T, U> { /* fields omitted */ }

A buf stream that sequences two buf streams together.

Chain values are produced by the chain function on BufStream.

Trait Implementations

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

type Item = Either<T::Item, U::Item>

Values yielded by the BufStream. Read more

type Error = T::Error

The error type this BufStream might generate.

fn size_hint(&self) -> SizeHint[src]

Returns the bounds on the remaining length of the stream. Read more

impl<T: Debug, U: Debug> Debug for Chain<T, U>[src]

Auto Trait Implementations

impl<T, U> Send for Chain<T, U> where
    T: Send,
    U: Send

impl<T, U> Sync for Chain<T, U> where
    T: Sync,
    U: Sync

Blanket Implementations

impl<T> BufStreamExt for T where
    T: BufStream
[src]

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

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

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

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

fn limit(self, amount: u64) -> Limit<Self> where
    Self: Sized
[src]

Limit the number of bytes that the stream can yield. Read more

fn into_stream(self) -> IntoStream<Self> where
    Self: Sized
[src]

Creates a Stream from a BufStream. Read more

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.