Searched defs:ChunkHintedIterator (Results 1 – 1 of 1) sorted by relevance
751 struct ChunkHintedIterator<I: ExactSizeIterator + Iterator + Clone> { struct752 iter: I,753 chunk_remaining: usize,754 chunk_size: usize,755 hint_total_size: bool,757 impl<I: ExactSizeIterator + Iterator + Clone> Iterator for ChunkHintedIterator<I> { implementation