pub type RlResult<T> = Result<T, RlError>;
Convenience alias.
pub enum RlResult<T> { Ok(T), Err(RlError), }
Contains the success value
Contains the error value