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