pub type Result = Result<Matches, Fail>;
The result of parsing a command line with a set of options.
enum Result { Ok(Matches), Err(Fail), }
Contains the success value
Contains the error value