Struct Chunks
struct Chunks<'a, I> { ... }
where
I: Iterator + 'a,
<I as >::Item: 'a
An iterator that yields the Chunk iterators.
Iterator element type is Chunk.
See .chunks() for more information.
Implementations
impl<'a, I> Clone for Chunks<'a, I>
fn clone(self: &Self) -> Chunks<'a, I>
impl<'a, I> Freeze for Chunks<'a, I>
impl<'a, I> Iterator for Chunks<'a, I>
fn next(self: &mut Self) -> Option<<Self as >::Item>
impl<'a, I> RefUnwindSafe for Chunks<'a, I>
impl<'a, I> Send for Chunks<'a, I>
impl<'a, I> Sync for Chunks<'a, I>
impl<'a, I> Unpin for Chunks<'a, I>
impl<'a, I> UnsafeUnpin for Chunks<'a, I>
impl<'a, I> UnwindSafe for Chunks<'a, I>
impl<I> IntoIterator for Chunks<'a, I>
fn into_iter(self: Self) -> I
impl<T> Any for Chunks<'a, I>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Chunks<'a, I>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Chunks<'a, I>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Chunks<'a, I>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Chunks<'a, I>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Itertools for Chunks<'a, I>
impl<T> ToOwned for Chunks<'a, I>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Chunks<'a, I>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Chunks<'a, I>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Chunks<'a, I>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>