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