pub trait CommandFactoryExtra: CommandFactory {
    fn generate_completion(generator: CompletionGenerator) -> Result<(), Error> { ... }
    fn run_completion_generator() -> ExitCode { ... }
}
Expand description

Additional methods for CommandFactory.

Provided Methods

Generate a shell completion file.

Create and run the completion generator.

Implementors