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