Trait AsyncFunc
pub trait AsyncFunc<Args: Tuple>: AsyncFuncMut<Args> {
// Required method
fn async_call(&self, args: Args) -> Self::Future;
}Available on crate feature
func only.pub trait AsyncFunc<Args: Tuple>: AsyncFuncMut<Args> {
// Required method
fn async_call(&self, args: Args) -> Self::Future;
}func only.