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