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

Associated Types

Required methods

Implementations on Foreign Types

Implementors