Type Alias Result
pub type Result<T> = Result<T, Error>;
👎Deprecated: Use
Result<T, multihash::Error>
insteadExpand description
Multihash result.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}