Struct wasmtime_environ::__core::task::Ready [−][src]
pub struct Ready<T>(_);
🔬 This is a nightly-only experimental API. (
poll_ready
)Expand description
Extracts the successful type of a Poll<T>
.
See Poll::ready
for details.
Trait Implementations
🔬 This is a nightly-only experimental API. (
try_trait_v2
)Constructs the type from a compatible Residual
type. Read more
🔬 This is a nightly-only experimental API. (
try_trait_v2
)Constructs the type from a compatible Residual
type. Read more
type Output = T
type Output = T
🔬 This is a nightly-only experimental API. (
try_trait_v2
)The type of the value produced by ?
when not short-circuiting.
type Residual = Ready<Infallible>
type Residual = Ready<Infallible>
🔬 This is a nightly-only experimental API. (
try_trait_v2
)The type of the value passed to FromResidual::from_residual
as part of ?
when short-circuiting. Read more
🔬 This is a nightly-only experimental API. (
try_trait_v2
)Constructs the type from its Output
type. Read more
🔬 This is a nightly-only experimental API. (
try_trait_v2
)Used in ?
to decide whether the operator should produce a value
(because this returned ControlFlow::Continue
)
or propagate a value back to the caller
(because this returned ControlFlow::Break
). Read more