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