pub type CVResult<T> = Result<T, CVError>;
pub enum CVResult<T> { Ok(T), Err(CVError), }
Contains the success value
Contains the error value