Type Alias RocketMQResult

Source
pub type RocketMQResult<T> = Result<T, CommonError>;

Aliased Type§

pub enum RocketMQResult<T> {
    Ok(T),
    Err(CommonError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CommonError)

Contains the error value