Struct ndarray::iter::ExactChunks
source · [−]pub struct ExactChunks<'a, A, D> { /* private fields */ }
Expand description
Exact chunks producer and iterable.
See .exact_chunks()
for more
information.
Trait Implementations
sourceimpl<'a, A, D: Clone> Clone for ExactChunks<'a, A, D>
impl<'a, A, D: Clone> Clone for ExactChunks<'a, A, D>
sourceimpl<'a, A, D> IntoIterator for ExactChunks<'a, A, D> where
D: Dimension,
A: 'a,
impl<'a, A, D> IntoIterator for ExactChunks<'a, A, D> where
D: Dimension,
A: 'a,
sourceimpl<'a, A, D: Dimension> NdProducer for ExactChunks<'a, A, D>
impl<'a, A, D: Dimension> NdProducer for ExactChunks<'a, A, D>
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 ExactChunks<'a, A, D> where
A: RefUnwindSafe,
D: RefUnwindSafe,
impl<'a, A, D> Send for ExactChunks<'a, A, D> where
A: Sync,
D: Send,
impl<'a, A, D> Sync for ExactChunks<'a, A, D> where
A: Sync,
D: Sync,
impl<'a, A, D> Unpin for ExactChunks<'a, A, D> where
D: Unpin,
impl<'a, A, D> UnwindSafe for ExactChunks<'a, A, D> where
A: RefUnwindSafe,
D: UnwindSafe,
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more