Struct futures::future::Then [] [src]

#[must_use = "futures do nothing unless polled"]
pub struct Then<A, B, F> where
    A: Future,
    B: IntoFuture
{ /* fields omitted */ }

Future for the then combinator, chaining computations on the end of another future regardless of its outcome.

This is created by the Future::then method.

Trait Implementations

impl<A, B, F> Debug for Then<A, B, F> where
    A: Debug + Future,
    B: Debug + IntoFuture,
    F: Debug,
    <B as IntoFuture>::Future: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<A, B, F> Future for Then<A, B, F> where
    A: Future,
    B: IntoFuture,
    F: FnOnce(Result<<A as Future>::Item, <A as Future>::Error>) -> B, 
[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, B, F> Send for Then<A, B, F> where
    A: Send,
    F: Send,
    <B as IntoFuture>::Future: Send

impl<A, B, F> Sync for Then<A, B, F> where
    A: Sync,
    F: Sync,
    <B as IntoFuture>::Future: Sync