[−][src]Struct tokio::prelude::future::AndThen
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, B, F> Future for AndThen<A, B, F> where
A: Future,
B: IntoFuture<Error = <A as Future>::Error>,
F: FnOnce(<A as Future>::Item) -> B,
[src][+]
A: Future,
B: IntoFuture<Error = <A as Future>::Error>,
F: FnOnce(<A as Future>::Item) -> B,
impl<A, B, F> Debug for AndThen<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 AndThen<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 AndThen<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 AndThen<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 AndThen<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 AndThen<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,