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