Trait wasmer_types::entity::__core::future::IntoFuture[][src]

pub trait IntoFuture {
    type Output;
    type Future: Future;
    pub fn into_future(self) -> Self::Future;
}
🔬 This is a nightly-only experimental API. (into_future)

Conversion into a Future.

Associated Types

type Output[src]

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

The output that the future will produce on completion.

type Future: Future[src]

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

Which kind of future are we turning this into?

Loading content...

Required methods

pub fn into_future(self) -> Self::Future[src]

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

Creates a future from a value.

Loading content...

Implementors

impl<F> IntoFuture for F where
    F: Future
[src]

type Output = <F as Future>::Output

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

type Future = F

🔬 This is a nightly-only experimental API. (into_future)
Loading content...