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