Struct SplitInclusiveMut

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

Parallel iterator over mutable slices separated by a predicate, including the matched part as a terminator.

Trait Implementations

impl<'data, T, P> ParallelIterator for SplitInclusiveMut<'data, T, P> where P: Fn(&T) -> bool + Sync + Send, T: Send,

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

impl<T: Debug, P> Debug for SplitInclusiveMut<'_, T, P>

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

Auto Trait Implementations

impl<'data, T, P> !UnwindSafe for SplitInclusiveMut<'data, T, P>

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

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

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

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

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

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

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

impl<T> From<T> for SplitInclusiveMut<'data, T, P>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for SplitInclusiveMut<'data, T, P>

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

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

impl<T> Pointable for SplitInclusiveMut<'data, T, P>

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 SplitInclusiveMut<'data, T, P> 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 SplitInclusiveMut<'data, T, P> where U: Into<T>,

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

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

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