pub struct TrieRoot<H, HO> {
pub root: Option<HO>,
/* private fields */
}
Expand description
Calculate the trie root of the trie.
Fields
root: Option<HO>
The resulting root.
Trait Implementations
Auto Trait Implementations
impl<H, HO> RefUnwindSafe for TrieRoot<H, HO> where
H: RefUnwindSafe,
HO: RefUnwindSafe,
impl<H, HO> Send for TrieRoot<H, HO> where
H: Send,
HO: Send,
impl<H, HO> Sync for TrieRoot<H, HO> where
H: Sync,
HO: Sync,
impl<H, HO> Unpin for TrieRoot<H, HO> where
H: Unpin,
HO: Unpin,
impl<H, HO> UnwindSafe for TrieRoot<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