pub struct TrieRootUnhashed<H> {
pub root: Option<Vec<u8>>,
/* private fields */
}Expand description
Get the trie root node encoding.
Fields§
§root: Option<Vec<u8>>The resulting encoded root.
Trait Implementations§
Source§impl<H> Default for TrieRootUnhashed<H>
impl<H> Default for TrieRootUnhashed<H>
Source§impl<H: Hasher> ProcessEncodedNode<<H as Hasher>::Out> for TrieRootUnhashed<H>
impl<H: Hasher> ProcessEncodedNode<<H as Hasher>::Out> for TrieRootUnhashed<H>
Auto Trait Implementations§
impl<H> Freeze for TrieRootUnhashed<H>
impl<H> RefUnwindSafe for TrieRootUnhashed<H>where
H: RefUnwindSafe,
impl<H> Send for TrieRootUnhashed<H>where
H: Send,
impl<H> Sync for TrieRootUnhashed<H>where
H: Sync,
impl<H> Unpin for TrieRootUnhashed<H>where
H: Unpin,
impl<H> UnwindSafe for TrieRootUnhashed<H>where
H: UnwindSafe,
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