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