pub trait ChunksOp<T>: Iterator<Item = T> { // Required method fn chunks(self, max_items: usize) -> Chunks<T, Self> ⓘ where Self: Sized; }