pub enum TrieError<T, E> {
InvalidStateRoot(T),
IncompleteDatabase(T),
DecoderError(T, E),
}
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,
DecoderError(T, E)
Corrupt Trie item
Trait Implementations
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,
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
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
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more