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