Struct actix::fut::AndThen [] [src]

#[must_use = "futures do nothing unless polled"]
pub struct AndThen<A, B, F> where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>, 
{ /* fields omitted */ }

Future for the and_then combinator, chaining a computation onto the end of another future which completes successfully.

This is created by the Future::and_then method.

Trait Implementations

impl<A: Debug, B: Debug, F: Debug> Debug for AndThen<A, B, F> where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>,
    B::Future: Debug
[src]

[src]

Formats the value using the given formatter.

impl<A, B, F> ActorFuture for AndThen<A, B, F> where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor, Error = A::Error>,
    F: FnOnce(A::Item, &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

[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Execute another future after this one has resolved successfully.