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