Struct trie_db::FatDB

source ·
pub struct FatDB<'db, 'cache, L>where
    L: TrieLayout,
{ /* private fields */ }
Expand description

A 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.

Implementations§

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.

Get the backing database.

Trait Implementations§

Return the root of the trie.
Does the trie contain a given key?
Returns the hash of the value for key.
Search for the key with the given query parameter. See the docs of the Query trait for more details. Read more
Returns a depth-first iterator over the elements of trie.
Returns a depth-first iterator over the keys of elemets of trie.
Is the trie empty?
What is the value of the given key in this trie?

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.