pub trait ExtendedCommand {
// Required method
fn execute(self, runner: CliRunner) -> Result<()>;
}Expand description
A trait for extension subcommands that can be added to the CLI.
Consumers implement this trait for their custom subcommands to define how they should be executed.