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