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