pub type MyResult<T> = Result<T, MyError>;
pub enum MyResult<T> { Ok(T), Err(MyError), }
Contains the success value
Contains the error value