pub type CommandInfo = CommandInfo<'static>;Expand description
Information about a particular command used for output.
Aliased Type§
pub struct CommandInfo {
pub name: &'static str,
pub short: &'static char,
pub description: &'static str,
}Fields§
§name: &'static strThe name of the command.
short: &'static charA short name for the command (alias).
description: &'static strA short description of the command’s functionality.