pub type Result<T> = Result<T, RichError>;
Convenience alias mirroring the subset of rich that raises on bad input.
rich
pub enum Result<T> { Ok(T), Err(RichError), }
Contains the success value
Contains the error value