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]

Formats the value using the given formatter. Read more

impl<Fut: Unpin, E> Unpin for ErrInto<Fut, E>
[src]

impl<Fut, E> Future for ErrInto<Fut, E> where
    Fut: TryFuture,
    Fut::Error: Into<E>, 
[src]

🔬 This is a nightly-only experimental API. (futures_api)

futures in libcore are unstable

The result of the Future.

🔬 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

Auto Trait Implementations

impl<Fut, E> Send for ErrInto<Fut, E> where
    E: Send,
    Fut: Send

impl<Fut, E> Sync for ErrInto<Fut, E> where
    E: Sync,
    Fut: Sync