Type Alias rsmq_async::RsmqResult

source ·
pub type RsmqResult<T> = Result<T, RsmqError>;
Expand description

This is an alias of Result<T, RsmqError> for simplicity

Aliased Type§

enum RsmqResult<T> {
    Ok(T),
    Err(RsmqError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RsmqError)

Contains the error value