pub type CommandResult = Result<String, Error>;
pub enum CommandResult { Ok(String), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value