RvResult

Type Alias RvResult 

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

RV Image’s result type with RvError as error type.

Aliased Type§

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

Variants§

§1.0.0

Ok(U)

Contains the success value

§1.0.0

Err(RvError)

Contains the error value