pub struct LanesMut<'a, A, D> { /* private fields */ }
Expand description
See .lanes_mut()
for more information.
Trait Implementations
sourceimpl<'a, A, D> IntoIterator for LanesMut<'a, A, D> where
D: Dimension,
impl<'a, A, D> IntoIterator for LanesMut<'a, A, D> where
D: Dimension,
sourceimpl<'a, A, D: Dimension> NdProducer for LanesMut<'a, A, D>
impl<'a, A, D: Dimension> NdProducer for LanesMut<'a, A, D>
type Item = ArrayViewMut<'a, A, Ix1>
type Item = ArrayViewMut<'a, A, Ix1>
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 LanesMut<'a, A, D> where
A: RefUnwindSafe,
D: RefUnwindSafe,
impl<'a, A, D> Send for LanesMut<'a, A, D> where
A: Send,
D: Send,
impl<'a, A, D> Sync for LanesMut<'a, A, D> where
A: Sync,
D: Sync,
impl<'a, A, D> Unpin for LanesMut<'a, A, D> where
D: Unpin,
impl<'a, A, D> !UnwindSafe for LanesMut<'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