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