pub type RResult<T, C> = Result<T, Report<C>>;
Shorthand for a Result with a [Report] as the error variant
Result
Report
enum RResult<T, C> { Ok(T), Err(Report<C>), }
Contains the success value
Contains the error value