[][src]Struct snafu::futures01::stream::Context

pub struct Context<St, C, E> { /* fields omitted */ }

Stream for the context combinator.

See the StreamExt::context method for more details.

Trait Implementations

impl<St, C, E> Stream for Context<St, C, E> where
    St: Stream,
    C: IntoError<E, Source = St::Error> + Clone,
    E: Error + ErrorCompat
[src]

type Item = St::Item

The type of item this stream will yield on success.

type Error = E

The type of error this stream may generate.

Auto Trait Implementations

impl<St, C, E> RefUnwindSafe for Context<St, C, E> where
    C: RefUnwindSafe,
    E: RefUnwindSafe,
    St: RefUnwindSafe

impl<St, C, E> Send for Context<St, C, E> where
    C: Send,
    E: Send,
    St: Send

impl<St, C, E> Sync for Context<St, C, E> where
    C: Sync,
    E: Sync,
    St: Sync

impl<St, C, E> Unpin for Context<St, C, E> where
    C: Unpin,
    E: Unpin,
    St: Unpin

impl<St, C, E> UnwindSafe for Context<St, C, E> where
    C: UnwindSafe,
    E: UnwindSafe,
    St: 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<St> StreamExt for St where
    St: Stream
[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.