Struct ndarray::iter::ExactChunksMut
source · pub struct ExactChunksMut<'a, A, D> { /* private fields */ }
Expand description
Exact chunks producer and iterable.
See .exact_chunks_mut()
for more information.
Trait Implementations§
source§impl<'a, A, D> IntoIterator for ExactChunksMut<'a, A, D>where
D: Dimension,
A: 'a,
impl<'a, A, D> IntoIterator for ExactChunksMut<'a, A, D>where D: Dimension, A: 'a,
§type Item = <<ExactChunksMut<'a, A, D> as IntoIterator>::IntoIter as Iterator>::Item
type Item = <<ExactChunksMut<'a, A, D> as IntoIterator>::IntoIter as Iterator>::Item
The type of the elements being iterated over.
§type IntoIter = ExactChunksIterMut<'a, A, D>
type IntoIter = ExactChunksIterMut<'a, A, D>
Which kind of iterator are we turning this into?
Auto Trait Implementations§
impl<'a, A, D> RefUnwindSafe for ExactChunksMut<'a, A, D>where A: RefUnwindSafe, D: RefUnwindSafe,
impl<'a, A, D> Send for ExactChunksMut<'a, A, D>where A: Send, D: Send,
impl<'a, A, D> Sync for ExactChunksMut<'a, A, D>where A: Sync, D: Sync,
impl<'a, A, D> Unpin for ExactChunksMut<'a, A, D>where D: Unpin,
impl<'a, A, D> !UnwindSafe for ExactChunksMut<'a, A, D>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<P> IntoNdProducer for Pwhere
P: NdProducer,
impl<P> IntoNdProducer for Pwhere P: NdProducer,
§type Item = <P as NdProducer>::Item
type Item = <P as NdProducer>::Item
The element produced per iteration.
§type Dim = <P as NdProducer>::Dim
type Dim = <P as NdProducer>::Dim
Dimension type of the producer
type Output = P
source§fn into_producer(self) -> <P as IntoNdProducer>::Output
fn into_producer(self) -> <P as IntoNdProducer>::Output
Convert the value into an
NdProducer
.