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