Struct triedb::MemoryTrieMut[][src]

pub struct MemoryTrieMut { /* fields omitted */ }

A memory-backed trie.

Implementations

impl MemoryTrieMut[src]

pub fn build(map: &HashMap<Vec<u8>, Vec<u8>>) -> Self[src]

Build a memory trie from a map.

Trait Implementations

impl Clone for MemoryTrieMut[src]

impl Debug for MemoryTrieMut[src]

impl Default for MemoryTrieMut[src]

impl Into<HashMap<H256, Vec<u8, Global>, RandomState>> for MemoryTrieMut[src]

impl TrieMut for MemoryTrieMut[src]

Auto Trait Implementations

impl RefUnwindSafe for MemoryTrieMut

impl Send for MemoryTrieMut

impl Sync for MemoryTrieMut

impl Unpin for MemoryTrieMut

impl UnwindSafe for MemoryTrieMut

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> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]