pub type OptRes = Result<TestOpts, String>;
Result of parsing the options.
enum OptRes { Ok(TestOpts), Err(String), }
Contains the success value
Contains the error value