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