pub trait AsyncFunc<Args, Ret> {
    fn call<'a, 'async_trait>(
        &'a self,
        args: Args
    ) -> Pin<Box<dyn Future<Output = Ret> + Send + 'async_trait>>
    where
        Args: 'a,
        Ret: 'a,
        'a: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors