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()