pub trait Callback<State>: CallbackClone<State> + Sync + Sendwhere
State: Clone + Default,{
// Required method
fn call(
&self,
cmd: &mut ClapCmd<State>,
matches: ArgMatches
) -> ClapCmdResult;
}pub trait Callback<State>: CallbackClone<State> + Sync + Sendwhere
State: Clone + Default,{
// Required method
fn call(
&self,
cmd: &mut ClapCmd<State>,
matches: ArgMatches
) -> ClapCmdResult;
}