pub type Result<T> = Result<T, HoprTransportError>;
Expand description
Result produced by the crate, uses the HoprTransportError as the error type.
Aliased Type§
enum Result<T> {
Ok(T),
Err(HoprTransportError),
}
pub type Result<T> = Result<T, HoprTransportError>;
Result produced by the crate, uses the HoprTransportError as the error type.
enum Result<T> {
Ok(T),
Err(HoprTransportError),
}