Struct futures_util::try_stream::ErrInto[][src]

#[must_use = "streams do nothing unless polled"]
pub struct ErrInto<St, E> { /* fields omitted */ }

Stream for the err_into combinator.

Trait Implementations

impl<St: Debug, E: Debug> Debug for ErrInto<St, E>
[src]

Formats the value using the given formatter. Read more

impl<St: Unpin, E> Unpin for ErrInto<St, E>
[src]

impl<St, E> Stream for ErrInto<St, E> where
    St: TryStream,
    St::Error: Into<E>, 
[src]

Values yielded by the stream.

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

Auto Trait Implementations

impl<St, E> Send for ErrInto<St, E> where
    E: Send,
    St: Send

impl<St, E> Sync for ErrInto<St, E> where
    E: Sync,
    St: Sync