pub type Result<T> = Result<T, HoprChainError>;
Expand description
The default Result object translating errors in the HoprChainError type
Aliased Type§
enum Result<T> {
Ok(T),
Err(HoprChainError),
}
pub type Result<T> = Result<T, HoprChainError>;
The default Result object translating errors in the HoprChainError type
enum Result<T> {
Ok(T),
Err(HoprChainError),
}