TrieWriter

Trait TrieWriter 

Source
pub trait TrieWriter: Send {
    // Required method
    fn write_trie_updates_sorted(
        &self,
        trie_updates: &TrieUpdatesSorted,
    ) -> Result<usize, ProviderError>;

    // Provided method
    fn write_trie_updates(
        &self,
        trie_updates: TrieUpdates,
    ) -> Result<usize, ProviderError> { ... }
}
Expand description

Trie Writer

Required Methods§

Source

fn write_trie_updates_sorted( &self, trie_updates: &TrieUpdatesSorted, ) -> Result<usize, ProviderError>

Writes trie updates to the database with already sorted updates.

Returns the number of entries modified.

Provided Methods§

Source

fn write_trie_updates( &self, trie_updates: TrieUpdates, ) -> Result<usize, ProviderError>

Writes trie updates to the database.

Returns the number of entries modified.

Implementations on Foreign Types§

Source§

impl<'a, T> TrieWriter for &'a T
where T: 'a + TrieWriter + ?Sized, &'a T: Send,

Source§

impl<T> TrieWriter for Box<T>
where T: TrieWriter + ?Sized, Box<T>: Send,

Implementors§

Source§

impl<TX: DbTxMut + DbTx + 'static, N: NodeTypes> TrieWriter for DatabaseProvider<TX, N>