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