pub type RvResult<U> = Result<U, RvError>;
RV Image’s result type with RvError as error type.
RvError
pub enum RvResult<U> { Ok(U), Err(RvError), }
Contains the success value
Contains the error value