Trait reth::providers::TrieWriter

source ·
pub trait TrieWriter: Send + Sync {
    // Required method
    fn write_trie_updates(
        &self,
        trie_updates: &TrieUpdates,
    ) -> Result<usize, ProviderError>;
}
Expand description

Trie Writer

Required 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 + Sync,

source§

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

source§

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

source§

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

source§

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

source§

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

Implementors§

source§

impl<TX> TrieWriter for DatabaseProvider<TX>
where TX: DbTxMut + DbTx,