pub struct Chunks<I: Iterator> { /* private fields */ }
Expand description
An iterator-like struct that yields chunks.
This struct
is created by chunks
method on IterChunks
. See its
documentation for more.
Similar to Iterator::next
, but not implements Iterator
due to
lifetime.
The underlying iterator implementations may choose to resume iteration
after finished, so calling Chunks::next
may also return Some(Chunk)
after returning None
.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.