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