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