Struct futures::future::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<Fut1, Fut2, F> Debug for AndThen<Fut1, Fut2, F> where
F: Debug,
Fut1: Debug,
Fut2: Debug,
[src]
[+]
impl<Fut1, Fut2, F> Debug for AndThen<Fut1, Fut2, F> where
F: Debug,
Fut1: Debug,
Fut2: Debug,
impl<Fut1, Fut2, F> Future for AndThen<Fut1, Fut2, F> where
F: FnOnce(<Fut1 as TryFuture>::Ok) -> Fut2,
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,
[src]
[+]
impl<Fut1, Fut2, F> Future for AndThen<Fut1, Fut2, F> where
F: FnOnce(<Fut1 as TryFuture>::Ok) -> Fut2,
Fut1: TryFuture,
Fut2: TryFuture<Error = <Fut1 as TryFuture>::Error>,