pub type SubCommandInfo = SubCommandInfo<'static>;
Expand description
Information about a subcommand.
Aliased Type§
struct SubCommandInfo {
pub name: &'static str,
pub command: CommandInfoWithArgs<'static>,
}
Fields§
§name: &'static str
The subcommand name.
command: CommandInfoWithArgs<'static>
The information about the subcommand.