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