#[non_exhaustive]pub enum MultihashParseError {
InvalidLength(usize),
UnknownHash(u8),
InvalidLengthPrefix,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Debug for MultihashParseError
impl Debug for MultihashParseError
Source§impl Display for MultihashParseError
impl Display for MultihashParseError
Source§impl Error for MultihashParseError
impl Error for MultihashParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<MultihashParseError> for CidParseError
impl From<MultihashParseError> for CidParseError
Source§fn from(err: MultihashParseError) -> Self
fn from(err: MultihashParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MultihashParseError
impl RefUnwindSafe for MultihashParseError
impl Send for MultihashParseError
impl Sync for MultihashParseError
impl Unpin for MultihashParseError
impl UnsafeUnpin for MultihashParseError
impl UnwindSafe for MultihashParseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more