Struct futures_util::try_future::ErrInto [−][src]
#[must_use = "futures do nothing unless polled"]pub struct ErrInto<Fut, E> { /* fields omitted */ }
Future for the err_into
combinator.
Trait Implementations
impl<Fut: Debug, E: Debug> Debug for ErrInto<Fut, E>
[src]
impl<Fut: Debug, E: Debug> Debug for ErrInto<Fut, E>
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, E> Unpin for ErrInto<Fut, E>
[src]
impl<Fut: Unpin, E> Unpin for ErrInto<Fut, E>
impl<Fut, E> Future for ErrInto<Fut, E> where
Fut: TryFuture,
Fut::Error: Into<E>,
[src]
impl<Fut, E> Future for ErrInto<Fut, E> where
Fut: TryFuture,
Fut::Error: Into<E>,
type Output = Result<Fut::Ok, E>
🔬 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