pub type RsmqResult<T> = Result<T, RsmqError>;
This is an alias of Result<T, RsmqError> for simplicity
Result<T, RsmqError>
pub enum RsmqResult<T> { Ok(T), Err(RsmqError), }
Contains the success value
Contains the error value