[−][src]Struct tokio::prelude::future::Flatten
Future for the flatten
combinator, flattening a future-of-a-future to get just
the result of the final future.
This is created by the Future::flatten
method.
Trait Implementations
impl<A> Future for Flatten<A> where
A: Future,
<A as Future>::Item: IntoFuture,
<<A as Future>::Item as IntoFuture>::Error: From<<A as Future>::Error>,
[src][+]
A: Future,
<A as Future>::Item: IntoFuture,
<<A as Future>::Item as IntoFuture>::Error: From<<A as Future>::Error>,
impl<A> Debug for Flatten<A> where
A: Future + Debug,
<A as Future>::Item: IntoFuture,
<<A as IntoFuture>::Item as IntoFuture>::Future: Debug,
[src][+]
A: Future + Debug,
<A as Future>::Item: IntoFuture,
<<A as IntoFuture>::Item as IntoFuture>::Future: Debug,
Auto Trait Implementations
impl<A> Send for Flatten<A> where
A: Send,
<<A as Future>::Item as IntoFuture>::Future: Send,
A: Send,
<<A as Future>::Item as IntoFuture>::Future: Send,
impl<A> Unpin for Flatten<A> where
A: Unpin,
<<A as Future>::Item as IntoFuture>::Future: Unpin,
A: Unpin,
<<A as Future>::Item as IntoFuture>::Future: Unpin,
impl<A> Sync for Flatten<A> where
A: Sync,
<<A as Future>::Item as IntoFuture>::Future: Sync,
A: Sync,
<<A as Future>::Item as IntoFuture>::Future: Sync,
impl<A> UnwindSafe for Flatten<A> where
A: UnwindSafe,
<<A as Future>::Item as IntoFuture>::Future: UnwindSafe,
A: UnwindSafe,
<<A as Future>::Item as IntoFuture>::Future: UnwindSafe,
impl<A> RefUnwindSafe for Flatten<A> where
A: RefUnwindSafe,
<<A as Future>::Item as IntoFuture>::Future: RefUnwindSafe,
A: RefUnwindSafe,
<<A as Future>::Item 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,