1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
crate::ix!();
#[derive(Default)]
pub struct ArgsManagerCommand {
/**
| The command (if one has been registered
| with AddCommand), or empty
|
*/
pub command: Option<String>,
/**
| If command is non-empty: Any args that
| followed it
|
| If command is empty: The unregistered
| command and any args that followed it
|
*/
pub args: Vec<String>,
}