pub type Result<T> = Result<T, TicketAggregationError>;
Expand description
Result used by the crate, based on the [ProtocolError] error type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TicketAggregationError),
}
pub type Result<T> = Result<T, TicketAggregationError>;
Result used by the crate, based on the [ProtocolError] error type.
pub enum Result<T> {
Ok(T),
Err(TicketAggregationError),
}