pub trait ValuesStream {
// Required method
fn next(&mut self) -> Option<ValueEntry>;
}Expand description
Streaming values iterator.
pub trait ValuesStream {
// Required method
fn next(&mut self) -> Option<ValueEntry>;
}Streaming values iterator.