pub trait AsyncFn<Args, Output> {
// Required method
fn call<'life0, 'async_trait>(
&'life0 self,
args: Args,
) -> Pin<Box<dyn Future<Output = Output> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}