pub enum TrieError<T, E> {
InvalidStateRoot(T),
IncompleteDatabase(T),
ValueAtIncompleteKey(Vec<u8>, u8),
DecoderError(T, E),
InvalidHash(T, Vec<u8>),
}
Expand description
Trie Errors.
These borrow the data within them to avoid excessive copying on every trie operation.
Variants§
InvalidStateRoot(T)
Attempted to create a trie with a state root not in the DB.
IncompleteDatabase(T)
Trie item not found in the database,
ValueAtIncompleteKey(Vec<u8>, u8)
A value was found in the trie with a nibble key that was not byte-aligned. The first parameter is the byte-aligned part of the prefix and the second parameter is the remaining nibble.
DecoderError(T, E)
Corrupt Trie item.
InvalidHash(T, Vec<u8>)
Hash is not value.
Trait Implementations§
source§impl<T, E> Display for TrieError<T, E>where
T: MaybeDebug,
E: MaybeDebug,
impl<T, E> Display for TrieError<T, E>where T: MaybeDebug, E: MaybeDebug,
source§impl<T, E> Error for TrieError<T, E>where
T: Debug,
E: Error,
impl<T, E> Error for TrieError<T, E>where T: Debug, E: Error,
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<T: PartialEq, E: PartialEq> PartialEq<TrieError<T, E>> for TrieError<T, E>
impl<T: PartialEq, E: PartialEq> PartialEq<TrieError<T, E>> for TrieError<T, E>
impl<T: Eq, E: Eq> Eq for TrieError<T, E>
impl<T, E> StructuralEq for TrieError<T, E>
impl<T, E> StructuralPartialEq for TrieError<T, E>
Auto Trait Implementations§
impl<T, E> RefUnwindSafe for TrieError<T, E>where E: RefUnwindSafe, T: RefUnwindSafe,
impl<T, E> Send for TrieError<T, E>where E: Send, T: Send,
impl<T, E> Sync for TrieError<T, E>where E: Sync, T: Sync,
impl<T, E> Unpin for TrieError<T, E>where E: Unpin, T: Unpin,
impl<T, E> UnwindSafe for TrieError<T, E>where E: UnwindSafe, T: UnwindSafe,
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