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