pub type CommandResult = Option<(String, Vec<String>, Option<i32>)>;
Type alias for the command result tuple
enum CommandResult { None, Some((String, Vec<String>, Option<i32>)), }
No value.
Some value of type T.
T