Struct tokio::task::Unconstrained [−][src]
#[must_use = "Unconstrained does nothing unless polled"]pub struct Unconstrained<F> { /* fields omitted */ }
Future for the unconstrained
method.
Trait Implementations
impl<F> Future for Unconstrained<F> where
F: Future,
[src]
impl<F> Future for Unconstrained<F> where
F: Future,
[src]impl<'__pin, F> Unpin for Unconstrained<F> where
__Origin<'__pin, F>: Unpin,
[src]
__Origin<'__pin, F>: Unpin,
Auto Trait Implementations
impl<F> RefUnwindSafe for Unconstrained<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for Unconstrained<F> where
F: Send,
F: Send,
impl<F> Sync for Unconstrained<F> where
F: Sync,
F: Sync,
impl<F> UnwindSafe for Unconstrained<F> where
F: UnwindSafe,
F: UnwindSafe,
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?