Trait AsyncFuncOnce
pub trait AsyncFuncOnce<Args: Tuple> {
type Future: Future<Output = Self::Output>;
type Output;
// Required method
fn async_call_once(self, args: Args) -> Self::Future;
}Available on crate feature
func only.