pub trait IntoRanges { type Iter: Iterator<Item = Range<usize>>; // Required method fn into_ranges(self) -> Self::Iter; }