Struct completion::stream::Chain[][src]

pub struct Chain<A, B> { /* fields omitted */ }

Trait Implementations

impl<A: Clone, B: Clone> Clone for Chain<A, B>[src]

impl<A, B, I> CompletionStream for Chain<A, B> where
    A: CompletionStream<Item = I>,
    B: CompletionStream<Item = I>, 
[src]

type Item = I

Values yielded by the stream.

impl<A: Debug, B: Debug> Debug for Chain<A, B>[src]

impl<A, B, I> Stream for Chain<A, B> where
    A: CompletionStream<Item = I> + Stream<Item = I>,
    B: CompletionStream<Item = I> + Stream<Item = I>, 
[src]

type Item = I

Values yielded by the stream.

impl<'__pin, A, B> Unpin for Chain<A, B> where
    __Origin<'__pin, A, B>: Unpin
[src]

Auto Trait Implementations

impl<A, B> RefUnwindSafe for Chain<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for Chain<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Chain<A, B> where
    A: Sync,
    B: Sync

impl<A, B> UnwindSafe for Chain<A, B> where
    A: UnwindSafe,
    B: 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> CompletionStreamExt for T where
    T: CompletionStream + ?Sized
[src]

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

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

impl<T> StreamExt for T where
    T: Stream
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<S, T, E> TryStream for S where
    S: Stream<Item = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future