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.

Implementations

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.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.