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