Struct ChunkByMut

struct ChunkByMut<'a, T: 'a, P> { ... }

An iterator over slice in (non-overlapping) mutable chunks separated by a predicate.

This struct is created by the chunk_by_mut method on slices.

Implementations

impl<'a, T, P> Freeze for ChunkByMut<'a, T, P>

impl<'a, T, P> RefUnwindSafe for ChunkByMut<'a, T, P>

impl<'a, T, P> Send for ChunkByMut<'a, T, P>

impl<'a, T, P> Sync for ChunkByMut<'a, T, P>

impl<'a, T, P> Unpin for ChunkByMut<'a, T, P>

impl<'a, T, P> UnsafeUnpin for ChunkByMut<'a, T, P>

impl<'a, T, P> UnwindSafe for ChunkByMut<'a, T, P>

impl<'a, T: 'a + fmt::Debug, P> Debug for ChunkByMut<'a, T, P>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<'a, T: 'a, P> DoubleEndedIterator for ChunkByMut<'a, T, P>

fn next_back(self: &mut Self) -> Option<<Self as >::Item>

impl<'a, T: 'a, P> FusedIterator for ChunkByMut<'a, T, P>

impl<'a, T: 'a, P> Iterator for ChunkByMut<'a, T, P>

fn next(self: &mut Self) -> Option<<Self as >::Item>
fn size_hint(self: &Self) -> (usize, Option<usize>)
fn last(self: Self) -> Option<<Self as >::Item>

impl<I> IntoIterator for ChunkByMut<'a, T, P>

fn into_iter(self: Self) -> I

impl<T> Any for ChunkByMut<'a, T, P>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ChunkByMut<'a, T, P>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for ChunkByMut<'a, T, P>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for ChunkByMut<'a, T, P>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for ChunkByMut<'a, T, P>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for ChunkByMut<'a, T, P>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for ChunkByMut<'a, T, P>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>