pub trait FnMutOfArgs<TArgs>: FnOnceOfArgs<TArgs> {
    type DynFnMut: ?Sized + DynFnMut<ArgsTuple = TArgs>;
    fn into_box_dyn_fn_mut(self: Box<Self>) -> Box<Self::DynFnMut>
    where
        Self: 'static
; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors