pub trait IndexedZSetReader: BatchReader<R = ZWeight, DynR = DynZWeight, Time = ()> {
// Provided method
fn iter(&self) -> impl Iterator<Item = (Self::Key, Self::Val, ZWeight)> + '_ { ... }
}Expand description
A statically typed wrapper around DynIndexedZSetReader.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".