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§
Sourcefn set_hashed_address(&mut self, hashed_address: B256)
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 Twhere
&'a mut T: TrieCursor,
impl<'a, T: 'a + TrieStorageCursor + ?Sized> TrieStorageCursor for &'a mut Twhere
&'a mut T: TrieCursor,
fn set_hashed_address(&mut self, hashed_address: B256)
Implementors§
impl TrieStorageCursor for MockTrieCursor
Available on crate features
test-utils only.