pub trait TrieStorageCursor: TrieCursor {
// Required method
fn set_hashed_address(&mut self, hashed_address: FixedBytes<32>);
}Available on crate feature
trie only.Expand description
A cursor for traversing storage trie nodes.
Required Methods§
Sourcefn set_hashed_address(&mut self, hashed_address: FixedBytes<32>)
fn set_hashed_address(&mut self, hashed_address: FixedBytes<32>)
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.