pub type TryResult = Result<i32, &'static str>;
Trivial alias for Result for convenience.
enum TryResult { Ok(i32), Err(&'static str), }
Contains the success value
Contains the error value