Struct futures_util::future::Map [−][src]
#[must_use = "futures/streams/sinks do nothing unless you `.await` or poll them"]pub struct Map<Fut, F> { /* fields omitted */ }
Future for the map
method.
Trait Implementations
impl<Fut, F> FusedFuture for Map<Fut, F> where
Map<Fut, F>: FusedFuture,
[src]
impl<Fut, F> FusedFuture for Map<Fut, F> where
Map<Fut, F>: FusedFuture,
[src]fn is_terminated(&self) -> bool
[src]
impl<'__pin, Fut, F> Unpin for Map<Fut, F> where
__Origin<'__pin, Fut, F>: Unpin,
[src]
__Origin<'__pin, Fut, F>: Unpin,
Auto Trait Implementations
impl<Fut, F> RefUnwindSafe for Map<Fut, F> where
F: RefUnwindSafe,
Fut: RefUnwindSafe,
F: RefUnwindSafe,
Fut: RefUnwindSafe,
impl<Fut, F> Send for Map<Fut, F> where
F: Send,
Fut: Send,
F: Send,
Fut: Send,
impl<Fut, F> Sync for Map<Fut, F> where
F: Sync,
Fut: Sync,
F: Sync,
Fut: Sync,
impl<Fut, F> UnwindSafe for Map<Fut, F> where
F: UnwindSafe,
Fut: UnwindSafe,
F: 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?