Struct trie_db::TrieRootPrint
source · [−]pub struct TrieRootPrint<H, HO> {
pub root: Option<HO>,
/* private fields */
}
Expand description
Calculate the trie root of the trie. Print a debug trace.
Fields
root: Option<HO>
The resulting root.
Trait Implementations
sourceimpl<H, HO> Default for TrieRootPrint<H, HO>
impl<H, HO> Default for TrieRootPrint<H, HO>
sourceimpl<H: Hasher> ProcessEncodedNode<<H as Hasher>::Out> for TrieRootPrint<H, <H as Hasher>::Out>
impl<H: Hasher> ProcessEncodedNode<<H as Hasher>::Out> for TrieRootPrint<H, <H as Hasher>::Out>
Auto Trait Implementations
impl<H, HO> RefUnwindSafe for TrieRootPrint<H, HO> where
H: RefUnwindSafe,
HO: RefUnwindSafe,
impl<H, HO> Send for TrieRootPrint<H, HO> where
H: Send,
HO: Send,
impl<H, HO> Sync for TrieRootPrint<H, HO> where
H: Sync,
HO: Sync,
impl<H, HO> Unpin for TrieRootPrint<H, HO> where
H: Unpin,
HO: Unpin,
impl<H, HO> UnwindSafe for TrieRootPrint<H, HO> where
H: UnwindSafe,
HO: 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