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