Struct futures_util::try_future::MapOk [−][src]
#[must_use = "futures do nothing unless polled"]pub struct MapOk<Fut, F> { /* fields omitted */ }
Future for the map_ok
combinator.
Trait Implementations
impl<Fut: Debug, F: Debug> Debug for MapOk<Fut, F>
[src]
impl<Fut: Debug, F: Debug> Debug for MapOk<Fut, F>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<Fut: Unpin, F> Unpin for MapOk<Fut, F>
[src]
impl<Fut: Unpin, F> Unpin for MapOk<Fut, F>
impl<Fut, F, T> Future for MapOk<Fut, F> where
Fut: TryFuture,
F: FnOnce(Fut::Ok) -> T,
[src]
impl<Fut, F, T> Future for MapOk<Fut, F> where
Fut: TryFuture,
F: FnOnce(Fut::Ok) -> T,
type Output = Result<T, Fut::Error>
🔬 This is a nightly-only experimental API. (futures_api
)
futures in libcore are unstable
The result of the Future
.
fn poll(self: PinMut<Self>, cx: &mut Context) -> Poll<Self::Output>
[src]
fn poll(self: PinMut<Self>, cx: &mut Context) -> Poll<Self::Output>
🔬 This is a nightly-only experimental API. (futures_api
)
futures in libcore are unstable
Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more