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