RvResult

Type Alias RvResult 

Source
pub type RvResult<T> = Result<T, RvError>;
Expand description

Provides a simplified Rivia result type with a common Rivia error type

Aliased Type§

pub enum RvResult<T> {
    Ok(T),
    Err(RvError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RvError)

Contains the error value