pub enum FixedHashError {
FromSlice(FromSliceError),
IntoSlice(IntoSliceError),
FromStr(FromStrError),
}
Variants§
Trait Implementations§
Source§impl Debug for FixedHashError
impl Debug for FixedHashError
Source§impl Display for FixedHashError
impl Display for FixedHashError
Source§impl Error for FixedHashError
impl Error for FixedHashError
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<FromSliceError> for FixedHashError
impl From<FromSliceError> for FixedHashError
Source§fn from(source: FromSliceError) -> Self
fn from(source: FromSliceError) -> Self
Converts to this type from the input type.
Source§impl From<FromStrError> for FixedHashError
impl From<FromStrError> for FixedHashError
Source§fn from(source: FromStrError) -> Self
fn from(source: FromStrError) -> Self
Converts to this type from the input type.
Source§impl From<IntoSliceError> for FixedHashError
impl From<IntoSliceError> for FixedHashError
Source§fn from(source: IntoSliceError) -> Self
fn from(source: IntoSliceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FixedHashError
impl RefUnwindSafe for FixedHashError
impl Send for FixedHashError
impl Sync for FixedHashError
impl Unpin for FixedHashError
impl UnwindSafe for FixedHashError
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