Struct futures_util::future::Recover [] [src]

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

Future for the recover combinator, handling errors by converting them into an Item, 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> Future for Recover<A, E, F> where
    A: Future,
    F: FnOnce(A::Error) -> A::Item
[src]

A successful value

An error

[src]

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. 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