pub type MathResult<T> = Result<T, MathError>;
A specialized Result type for mathematical operations.
pub enum MathResult<T> { Ok(T), Err(MathError), }
Contains the success value
Contains the error value