pub type CliResult = Result<(), String>;
Common result type for CLI operations.
pub enum CliResult { Ok(()), Err(String), }
Contains the success value
Contains the error value