pub type GatewayResult = Result<GatewayResponse, GatewayError>;Expand description
A generic Result type for gateway operations.
Aliased Type§
pub enum GatewayResult {
Ok(Response<UnsyncBoxBody<Bytes, GatewayError>>),
Err(GatewayError),
}Variants§
Ok(Response<UnsyncBoxBody<Bytes, GatewayError>>)
Contains the success value
Err(GatewayError)
Contains the error value