Struct RChunksMut

pub struct RChunksMut<'data, T> { /* private fields */ }

Parallel iterator over mutable non-overlapping chunks of a slice, starting at the end.

Trait Implementations

impl<'data, T: Debug> Debug for RChunksMut<'data, T>

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

impl<'data, T: Send> ParallelIterator for RChunksMut<'data, T>

type Item = &'data mut [T];
fn drive_unindexed<C>(self, consumer: C) -> C::Result
where
    C: UnindexedConsumer<Self::Item>,
fn opt_len(&self) -> Option<usize>

impl<T: Send> IndexedParallelIterator for RChunksMut<'_, T>

fn drive<C>(self, consumer: C) -> C::Result
where
    C: Consumer<Self::Item>,
fn len(&self) -> usize
fn with_producer<CB>(self, callback: CB) -> CB::Output
where
    CB: ProducerCallback<Self::Item>,

Auto Trait Implementations

impl<'data, T> !UnwindSafe for RChunksMut<'data, T>

impl<'data, T> Freeze for RChunksMut<'data, T> where &'data mut [T]: Freeze,

impl<'data, T> RefUnwindSafe for RChunksMut<'data, T> where &'data mut [T]: RefUnwindSafe,

impl<'data, T> Send for RChunksMut<'data, T> where &'data mut [T]: Send,

impl<'data, T> Sync for RChunksMut<'data, T> where &'data mut [T]: Sync,

impl<'data, T> Unpin for RChunksMut<'data, T> where &'data mut [T]: Unpin,

impl<'data, T> UnsafeUnpin for RChunksMut<'data, T> where &'data mut [T]: UnsafeUnpin,

Blanket Implementations

impl<T> Any for RChunksMut<'data, T> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for RChunksMut<'data, T> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for RChunksMut<'data, T> where T: ?Sized,

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

impl<T> From<T> for RChunksMut<'data, T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for RChunksMut<'data, T>

impl<T> IntoParallelIterator for RChunksMut<'data, T> where T: ParallelIterator,

type Iter = T;
type Item = <T as ParallelIterator>::Item;
fn into_par_iter(self) -> T

impl<T> Pointable for RChunksMut<'data, T>

const ALIGN: usize = _;
type Init = T;
unsafe fn init(init: <T as Pointable>::Init) -> usize
unsafe fn deref<'a>(ptr: usize) -> &'a T
unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
unsafe fn drop(ptr: usize)

impl<T, U> Into<U> for RChunksMut<'data, T> where U: From<T>,

fn into(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<U> for RChunksMut<'data, T> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for RChunksMut<'data, T> where U: TryFrom<T>,

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