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
sourceimpl<'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,
sourceimpl<'a, A, D: Dimension> NdProducer for ExactChunksMut<'a, A, D>
impl<'a, A, D: Dimension> NdProducer for ExactChunksMut<'a, A, D>
type Item = ArrayViewMut<'a, A, D>
type Item = ArrayViewMut<'a, A, D>
The element produced per iteration.
type Dim = D
type Dim = D
Dimension type
sourcefn __private__(&self) -> PrivateMarker
fn __private__(&self) -> PrivateMarker
This trait is private to implement; this method exists to make it impossible to implement outside the crate. Read more
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more