[]Struct async_std::stream::Chain

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

A stream that chains two streams one after another.

This struct is created by the chain method on Stream. See its documentation for more.

Trait Implementations

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

impl<S: Stream, U: Stream<Item = S::Item>> Stream for Chain<S, U>[src]

type Item = S::Item

The type of items yielded by this stream. Read more

impl<'__pin, S, U> Unpin for Chain<S, U> where
    __Origin<'__pin, S, U>: Unpin

Auto Trait Implementations

impl<S, U> RefUnwindSafe for Chain<S, U> where
    S: RefUnwindSafe,
    U: RefUnwindSafe

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

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

impl<S, U> UnwindSafe for Chain<S, U> where
    S: UnwindSafe,
    U: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.