Struct futures_util::stream::Recover [] [src]

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

Future for the recover combinator, handling errors by converting them into an Option<Item>, such that a None value terminates the stream. Recover is compatible with any error type of the caller's choosing.

Trait Implementations

impl<A: Debug, E: Debug, F: Debug> Debug for Recover<A, E, F>
[src]

[src]

Formats the value using the given formatter. Read more

impl<A, E, F> Stream for Recover<A, E, F> where
    A: Stream,
    F: FnMut(A::Error) -> Option<A::Item>, 
[src]

Values yielded by the stream.

Errors yielded by the stream.

[src]

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<A, E, F> Send for Recover<A, E, F> where
    A: Send,
    E: Send,
    F: Send

impl<A, E, F> Sync for Recover<A, E, F> where
    A: Sync,
    E: Sync,
    F: Sync