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