[][src]Struct futures_util::try_stream::MapErr

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

Stream for the map_err combinator.

Trait Implementations

impl<St: Debug, F: Debug> Debug for MapErr<St, F>
[src]

Formats the value using the given formatter. Read more

impl<St: Unpin, F> Unpin for MapErr<St, F>
[src]

impl<St, F, E> Stream for MapErr<St, F> where
    St: TryStream,
    F: FnMut(St::Error) -> 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, F> Send for MapErr<St, F> where
    F: Send,
    St: Send

impl<St, F> Sync for MapErr<St, F> where
    F: Sync,
    St: Sync