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