TrieStorageCursor

Trait TrieStorageCursor 

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl<'a, T> TrieStorageCursor for &'a mut T

Source§

fn set_hashed_address(&mut self, hashed_address: FixedBytes<32>)

Implementors§