AsyncFuncMut

Trait AsyncFuncMut 

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

Required Methods§

fn async_call_mut(&mut self, args: Args) -> Self::Future

Implementors§

§

impl<F, Args> AsyncFuncMut<Args> for F
where F: FuncMut<Args>, F::Output: Future, Args: Tuple,