[][src]Struct trie_db::FatDBMut

pub struct FatDBMut<'db, H, C> where
    H: Hasher + 'db,
    C: NodeCodec<H>, 
{ /* fields omitted */ }

A mutable Trie implementation which hashes keys and uses a generic HashDB backing database. Additionaly it stores inserted hash-key mappings for later retrieval.

Use it as a Trie or TrieMut trait object.

Methods

impl<'db, H, C> FatDBMut<'db, H, C> where
    H: Hasher,
    C: NodeCodec<H>, 
[src]

pub fn new(db: &'db mut dyn HashDB<H, DBValue>, root: &'db mut H::Out) -> Self[src]

Create a new trie with the backing database db and empty root Initialise to the state entailed by the genesis block. This guarantees the trie is built correctly.

pub fn from_existing(
    db: &'db mut dyn HashDB<H, DBValue>,
    root: &'db mut H::Out
) -> Result<Self, H::Out, C::Error>
[src]

Create a new trie with the backing database db and root.

Returns an error if root does not exist.

pub fn db(&self) -> &dyn HashDB<H, DBValue>[src]

Get the backing database.

pub fn db_mut(&mut self) -> &mut dyn HashDB<H, DBValue>[src]

Get the backing database.

Trait Implementations

impl<'db, H, C> TrieMut<H, C> for FatDBMut<'db, H, C> where
    H: Hasher,
    C: NodeCodec<H>, 
[src]

Auto Trait Implementations

impl<'db, H, C> Send for FatDBMut<'db, H, C> where
    C: Send,
    <H as Hasher>::Out: Send

impl<'db, H, C> Sync for FatDBMut<'db, H, C> where
    C: Sync,
    <H as Hasher>::Out: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.