pub type RlgResult<T> = Result<T, RlgError>;
Type alias for a Result with RlgError as the error type.
enum RlgResult<T> { Ok(T), Err(RlgError), }
Contains the success value
Contains the error value