Struct tetsy_trie_db::TrieRoot[][src]

pub struct TrieRoot<H, HO> {
    pub root: Option<HO>,
    // some fields omitted
}

Calculate the trie root of the trie.

Fields

root: Option<HO>

The resulting root.

Trait Implementations

impl<H, HO> Default for TrieRoot<H, HO>[src]

impl<H: Hasher> ProcessEncodedNode<<H as Hasher>::Out> for TrieRoot<H, <H as Hasher>::Out>[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.