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