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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.