Struct actix::fut::AndThen [−][src]
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]
[+]
impl<A: Debug, B: Debug, F: Debug> Debug for AndThen<A, B, F> where
A: ActorFuture,
B: IntoActorFuture<Actor = A::Actor>,
B::Future: Debug,
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]
[+]
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,