pub trait InvokeArg<'a> {
    type Input: 'a;

    fn convert(input: Self::Input) -> <Self as ClosureArg>::Output
    where
        Self: ClosureArg
; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors