HashedStorageCursor

Trait HashedStorageCursor 

Source
pub trait HashedStorageCursor: HashedCursor {
    // Required method
    fn is_storage_empty(&mut self) -> Result<bool, DatabaseError>;
}
Available on crate feature trie only.
Expand description

The cursor for iterating over hashed storage entries.

Required Methods§

Source

fn is_storage_empty(&mut self) -> Result<bool, DatabaseError>

Returns true if there are no entries for a given key.

Implementations on Foreign Types§

Source§

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

Implementors§