reth::providers

Trait 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, N> TrieWriter for DatabaseProvider<TX, N>
where TX: DbTxMut + DbTx + 'static, N: NodeTypes,