TrieStorageCursor

Trait TrieStorageCursor 

Source
pub trait TrieStorageCursor: TrieCursor {
    // Required method
    fn set_hashed_address(&mut self, hashed_address: B256);
}
Expand description

A cursor for traversing storage trie nodes.

Required Methods§

Source

fn set_hashed_address(&mut self, hashed_address: B256)

Set the hashed address for the storage trie cursor.

§Important

After calling this method, the subsequent operation MUST be a TrieCursor::seek or TrieCursor::seek_exact call.

Implementations on Foreign Types§

Source§

impl<'a, T: 'a + TrieStorageCursor + ?Sized> TrieStorageCursor for &'a mut T

Source§

fn set_hashed_address(&mut self, hashed_address: B256)

Implementors§