[−][src]Struct tokio::prelude::future::Then
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, B, F> Future for Then<A, B, F> where
A: Future,
B: IntoFuture,
F: FnOnce(Result<<A as Future>::Item, <A as Future>::Error>) -> B,
[src][+]
A: Future,
B: IntoFuture,
F: FnOnce(Result<<A as Future>::Item, <A as Future>::Error>) -> B,
impl<A, B, F> Debug for Then<A, B, F> where
A: Debug + Future,
B: Debug + IntoFuture,
F: Debug,
<B as IntoFuture>::Future: Debug,
[src][+]
A: Debug + Future,
B: Debug + IntoFuture,
F: Debug,
<B as IntoFuture>::Future: Debug,
Auto Trait Implementations
impl<A, B, F> Send for Then<A, B, F> where
A: Send,
F: Send,
<B as IntoFuture>::Future: Send,
A: Send,
F: Send,
<B as IntoFuture>::Future: Send,
impl<A, B, F> Unpin for Then<A, B, F> where
A: Unpin,
F: Unpin,
<B as IntoFuture>::Future: Unpin,
A: Unpin,
F: Unpin,
<B as IntoFuture>::Future: Unpin,
impl<A, B, F> Sync for Then<A, B, F> where
A: Sync,
F: Sync,
<B as IntoFuture>::Future: Sync,
A: Sync,
F: Sync,
<B as IntoFuture>::Future: Sync,
impl<A, B, F> UnwindSafe for Then<A, B, F> where
A: UnwindSafe,
F: UnwindSafe,
<B as IntoFuture>::Future: UnwindSafe,
A: UnwindSafe,
F: UnwindSafe,
<B as IntoFuture>::Future: UnwindSafe,
impl<A, B, F> RefUnwindSafe for Then<A, B, F> where
A: RefUnwindSafe,
F: RefUnwindSafe,
<B as IntoFuture>::Future: RefUnwindSafe,
A: RefUnwindSafe,
F: RefUnwindSafe,
<B as IntoFuture>::Future: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> From<T> for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<F> IntoFuture for F where
F: Future,
[src][+]
F: Future,