Trait linera_views::store::KeyIterable
source · pub trait KeyIterable<Error> {
type Iterator<'a>: Iterator<Item = Result<&'a [u8], Error>>
where Self: 'a;
// Required method
fn iterator(&self) -> Self::Iterator<'_>;
}
Expand description
How to iterate over the keys returned by a search query.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.