pub trait InvokeArg<'a> {
type Input: 'a;
// Required method
fn convert(input: Self::Input) -> <Self as ClosureArg>::Output
where Self: ClosureArg;
}
Required Associated Types§
Required Methods§
fn convert(input: Self::Input) -> <Self as ClosureArg>::Outputwhere
Self: ClosureArg,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.