pub trait SectionWithLimitedItems: SectionReader {
fn get_count(&self) -> u32;
fn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self> ⓘ
where
Self: Sized,
{ ... }
}
Expand description
Implemented by sections with a limited number of items.
Required Methods§
Provided Methods§
sourcefn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self> ⓘwhere
Self: Sized,
fn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self> ⓘwhere
Self: Sized,
Returns an iterator over the items within this section where the offset in the original section is provided with the item.