[][src]Trait maybe_std::future::IntoFuture

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

Conversion into a Future.

Associated Types

type Output

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

The output that the future will produce on completion.

type Future: Future

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

Which kind of future are we turning this into?

Loading content...

Required methods

fn into_future(self) -> Self::Future

🔬 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...