Struct IterMut
pub struct IterMut<'a, T> { /* private fields */ }
Parallel iterator over a mutable reference to a result
Trait Implementations
impl<'a, T: Debug> Debug for IterMut<'a, T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'a, T: Send> IndexedParallelIterator for IterMut<'a, T>
fn drive<C>(self, consumer: C) -> C::Result where C: Consumer<Self::Item>,fn len(&self) -> usizefn with_producer<CB>(self, callback: CB) -> CB::Output where CB: ProducerCallback<Self::Item>,
impl<'a, T: Send> ParallelIterator for IterMut<'a, T>
type Item = &'a mut T;fn drive_unindexed<C>(self, consumer: C) -> C::Result where C: UnindexedConsumer<Self::Item>,fn opt_len(&self) -> Option<usize>
Auto Trait Implementations
impl<'a, T> !UnwindSafe for IterMut<'a, T>
impl<'a, T> Freeze for IterMut<'a, T>
where
IntoIter<&'a mut T>: Freeze,
impl<'a, T> RefUnwindSafe for IterMut<'a, T>
where
IntoIter<&'a mut T>: RefUnwindSafe,
impl<'a, T> Send for IterMut<'a, T>
where
IntoIter<&'a mut T>: Send,
impl<'a, T> Sync for IterMut<'a, T>
where
IntoIter<&'a mut T>: Sync,
impl<'a, T> Unpin for IterMut<'a, T>
where
IntoIter<&'a mut T>: Unpin,
impl<'a, T> UnsafeUnpin for IterMut<'a, T>
where
IntoIter<&'a mut T>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for IterMut<'a, T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for IterMut<'a, T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for IterMut<'a, T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for IterMut<'a, T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> IntoEither for IterMut<'a, T>
impl<T> IntoParallelIterator for IterMut<'a, T>
where
T: ParallelIterator,
type Iter = T;type Item = <T as ParallelIterator>::Item;fn into_par_iter(self) -> T
impl<T> Pointable for IterMut<'a, T>
const ALIGN: usize = _;type Init = T;unsafe fn init(init: <T as Pointable>::Init) -> usizeunsafe fn deref<'a>(ptr: usize) -> &'a Tunsafe fn deref_mut<'a>(ptr: usize) -> &'a mut Tunsafe fn drop(ptr: usize)
impl<T, U> Into<U> for IterMut<'a, T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for IterMut<'a, T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for IterMut<'a, T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>