pub type RvResult<T> = Result<T, RvError>;
Provides a simplified Rivia result type with a common Rivia error type
pub enum RvResult<T> { Ok(T), Err(RvError), }
Contains the success value
Contains the error value