Skip to main content

IndexedZSetReader

Trait IndexedZSetReader 

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

Source

fn iter(&self) -> impl Iterator<Item = (Self::Key, Self::Val, ZWeight)> + '_

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<Z> IndexedZSetReader for Z
where Z: BatchReader<R = ZWeight, DynR = DynZWeight, Time = ()>,