Struct actix::fut::Then[][src]

#[must_use = "futures do nothing unless polled"]
pub struct Then<A, B, F> where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>, 
{ /* 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: Debug, B: Debug, F: Debug> Debug for Then<A, B, F> where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>,
    B::Future: Debug
[src]

Formats the value using the given formatter. Read more

impl<A, B, F> ActorFuture for Then<A, B, F> where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>,
    F: FnOnce(Result<A::Item, A::Error>, &mut A::Actor, &mut <A::Actor as Actor>::Context) -> B, 
[src]

The type of value that this future will resolved with if it is successful. Read more

The type of error that this future will resolve with if it fails in a normal fashion. Read more

The actor within which this future runs

Map this future's result to a different type, returning a new future of the resulting type. Read more

Map this future's error to a different error, returning a new future.

Drop this future's error, returning a new future.

Map this future's error to any error implementing From for this future's Error, returning a new future. Read more

Chain on a computation for when a future finished, passing the result of the future to the provided closure f. Read more

Execute another future after this one has resolved successfully.

Add timeout to futures chain. Read more

Auto Trait Implementations

impl<A, B, F> Send for Then<A, B, F> where
    A: Send,
    F: Send,
    <B as IntoActorFuture>::Future: Send

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