pub trait SeekableBucketIterator: Iterator<Item = BucketItem> {
// Required method
fn seek_bucket(&mut self, bucket: u64);
}Expand description
Synchronous bucket iterator that can reposition within its scan bounds.
Required Methods§
Sourcefn seek_bucket(&mut self, bucket: u64)
fn seek_bucket(&mut self, bucket: u64)
Reposition so the next bucket is the first at or past bucket in scan
direction. Implementations preserve budget and first-row reservation
state across seeks.