Enum futures_util::future::TryMaybeDone [−][src]
Expand description
A future that may have completed with an error.
This is created by the try_maybe_done()
function.
Variants
Future(Fut)
A not-yet-completed future
Done(Fut::Ok)
Tuple Fields
0: Fut::Ok
The output of the completed future
Gone
The empty variant after the result of a TryMaybeDone
has been
taken using the take_output
method,
or if the future returned an error.
Implementations
Returns an Option
containing a mutable reference to the output of the future.
The output of this method will be Some
if and only if the inner
future has completed successfully and take_output
has not yet been called.
Trait Implementations
Returns true
if the underlying future should no longer be polled.
Auto Trait Implementations
impl<Fut> RefUnwindSafe for TryMaybeDone<Fut> where
Fut: RefUnwindSafe,
<Fut as TryFuture>::Ok: RefUnwindSafe,
impl<Fut> UnwindSafe for TryMaybeDone<Fut> where
Fut: UnwindSafe,
<Fut as TryFuture>::Ok: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?
🔬 This is a nightly-only experimental API. (
into_future
)Creates a future from a value.