Trait std::ops::AsyncFnOnce

source ·
pub trait AsyncFnOnce<Args>
where Args: Tuple,
{ type CallOnceFuture: Future<Output = Self::Output>; type Output; // Required method extern "rust-call" fn async_call_once( self, args: Args ) -> Self::CallOnceFuture; }
🔬This is a nightly-only experimental API. (async_fn_traits)
Expand description

An async-aware version of the FnOnce trait.

All async fn and functions returning futures implement this trait.

Required Associated Types§

source

type CallOnceFuture: Future<Output = Self::Output>

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

Future returned by AsyncFnOnce::async_call_once.

source

type Output

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

Output type of the called closure’s future.

Required Methods§

source

extern "rust-call" fn async_call_once( self, args: Args ) -> Self::CallOnceFuture

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

Call the AsyncFnOnce, returning a future which may move out of the called closure.

Implementors§

source§

impl<F, A> AsyncFnOnce<A> for F
where F: FnOnce<A>, A: Tuple, <F as FnOnce<A>>::Output: Future,

§

type CallOnceFuture = <F as FnOnce<A>>::Output

§

type Output = <<F as FnOnce<A>>::Output as Future>::Output