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