pub enum LeafNodeEntryError<K, V> {
KeyCheckError(K),
ValueCheckError(V),
}
Expand description
An error that can occur while checking a leaf node entry.
Variants
KeyCheckError(K)
An error occurred while checking the entry’s key.
ValueCheckError(V)
An error occurred while checking the entry’s value.
Trait Implementations
sourceimpl<K: Debug, V: Debug> Debug for LeafNodeEntryError<K, V>
impl<K: Debug, V: Debug> Debug for LeafNodeEntryError<K, V>
sourceimpl<K: Display, V: Display> Display for LeafNodeEntryError<K, V>
impl<K: Display, V: Display> Display for LeafNodeEntryError<K, V>
sourceimpl<K: Error + 'static, V: Error + 'static> Error for LeafNodeEntryError<K, V>
impl<K: Error + 'static, V: Error + 'static> Error for LeafNodeEntryError<K, V>
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl<K, V> RefUnwindSafe for LeafNodeEntryError<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for LeafNodeEntryError<K, V> where
K: Send,
V: Send,
impl<K, V> Sync for LeafNodeEntryError<K, V> where
K: Sync,
V: Sync,
impl<K, V> Unpin for LeafNodeEntryError<K, V> where
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for LeafNodeEntryError<K, V> where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
sourcefn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more