pub type CalResult<T> = Result<T, CalError>;
Convenience alias used throughout the CAL module.
pub enum CalResult<T> { Ok(T), Err(CalError), }
Contains the success value
Contains the error value