pub trait SubCommand: FromArgs {
    const COMMAND: &'static CommandInfo;
}
Expand description

A FromArgs implementation that represents a single subcommand.

Required Associated Constants

Information about the subcommand.

Implementors