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