pub enum HashTrieError {
NotFound,
}
Expand description
The only error you’ll find is NotFound
.
Variants§
NotFound
The value was not found.
Trait Implementations§
Source§impl Clone for HashTrieError
impl Clone for HashTrieError
Source§fn clone(&self) -> HashTrieError
fn clone(&self) -> HashTrieError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HashTrieError
impl Debug for HashTrieError
Source§impl PartialEq for HashTrieError
impl PartialEq for HashTrieError
impl Eq for HashTrieError
impl StructuralPartialEq for HashTrieError
Auto Trait Implementations§
impl Freeze for HashTrieError
impl RefUnwindSafe for HashTrieError
impl Send for HashTrieError
impl Sync for HashTrieError
impl Unpin for HashTrieError
impl UnwindSafe for HashTrieError
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