pub trait EntryIterator<'a>: Send {
// Required methods
fn peek(&self) -> Option<&Entry<'a>>;
fn advance(&mut self);
fn is_exhausted(&self) -> bool;
fn source_priority(&self) -> u8;
}Expand description
Trait for a streaming source of entries
Required Methods§
Sourcefn is_exhausted(&self) -> bool
fn is_exhausted(&self) -> bool
Check if the iterator is exhausted
Sourcefn source_priority(&self) -> u8
fn source_priority(&self) -> u8
Get the source priority (lower = higher priority for same key)