pub type ClapCmdResult = Result<(), Box<dyn Error>>;
pub enum ClapCmdResult { Ok(()), Err(Box<dyn Error>), }
Contains the success value
Contains the error value