Enum futures_util::future::MaybeDone [−][src]
Expand description
A future that may have completed.
This is created by the maybe_done()
function.
Variants
Future(Fut)
A not-yet-completed future
Done(Fut::Output)
Tuple Fields
0: Fut::Output
The output of the completed future
Gone
The empty variant after the result of a MaybeDone
has been
taken using the take_output
method.
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 been completed 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 MaybeDone<Fut> where
Fut: RefUnwindSafe,
<Fut as Future>::Output: RefUnwindSafe,
impl<Fut> UnwindSafe for MaybeDone<Fut> where
Fut: UnwindSafe,
<Fut as Future>::Output: 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.