Struct futures_util::future::MapInto [−][src]
#[must_use = "futures/streams/sinks do nothing unless you `.await` or poll them"]pub struct MapInto<Fut, T> { /* fields omitted */ }
Future for the map_into
combinator.
Trait Implementations
impl<Fut, T> FusedFuture for MapInto<Fut, T> where
Map<Fut, IntoFn<T>>: FusedFuture,
[src]
impl<Fut, T> FusedFuture for MapInto<Fut, T> where
Map<Fut, IntoFn<T>>: FusedFuture,
[src]fn is_terminated(&self) -> bool
[src]
impl<'__pin, Fut, T> Unpin for MapInto<Fut, T> where
__Origin<'__pin, Fut, T>: Unpin,
[src]
__Origin<'__pin, Fut, T>: Unpin,
Auto Trait Implementations
impl<Fut, T> RefUnwindSafe for MapInto<Fut, T> where
Fut: RefUnwindSafe,
Fut: RefUnwindSafe,
impl<Fut, T> Send for MapInto<Fut, T> where
Fut: Send,
Fut: Send,
impl<Fut, T> Sync for MapInto<Fut, T> where
Fut: Sync,
Fut: Sync,
impl<Fut, T> UnwindSafe for MapInto<Fut, T> where
Fut: UnwindSafe,
Fut: UnwindSafe,
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?