Trait webview2_com::InvokeArg
source · [−]pub trait InvokeArg<'a> {
type Input: 'a;
fn convert(input: Self::Input) -> <Self as ClosureArg>::Output
where
Self: ClosureArg;
}
Required Associated Types
Required Methods
sourcefn convert(input: Self::Input) -> <Self as ClosureArg>::Output where