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>)
Trait Implementations
sourceimpl<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,
sourceimpl<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 · 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
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more