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