pub enum SimdIterWindowPtrMut<T, const LANES: usize> {
Simd(SimdIterPtrMut<T, LANES>),
Single(IterPtrMut<T>),
}
Variants§
Simd(SimdIterPtrMut<T, LANES>)
Single(IterPtrMut<T>)
Trait Implementations§
Source§impl<T: Clone, const LANES: usize> Clone for SimdIterWindowPtrMut<T, LANES>
impl<T: Clone, const LANES: usize> Clone for SimdIterWindowPtrMut<T, LANES>
Source§fn clone(&self) -> SimdIterWindowPtrMut<T, LANES>
fn clone(&self) -> SimdIterWindowPtrMut<T, LANES>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: PartialEq, const LANES: usize> PartialEq for SimdIterWindowPtrMut<T, LANES>
impl<T: PartialEq, const LANES: usize> PartialEq for SimdIterWindowPtrMut<T, LANES>
Source§fn eq(&self, other: &SimdIterWindowPtrMut<T, LANES>) -> bool
fn eq(&self, other: &SimdIterWindowPtrMut<T, LANES>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<T: Copy, const LANES: usize> Copy for SimdIterWindowPtrMut<T, LANES>
impl<T: Eq, const LANES: usize> Eq for SimdIterWindowPtrMut<T, LANES>
impl<T, const LANES: usize> StructuralPartialEq for SimdIterWindowPtrMut<T, LANES>
Auto Trait Implementations§
impl<T, const LANES: usize> Freeze for SimdIterWindowPtrMut<T, LANES>
impl<T, const LANES: usize> RefUnwindSafe for SimdIterWindowPtrMut<T, LANES>where
T: RefUnwindSafe,
impl<T, const LANES: usize> Send for SimdIterWindowPtrMut<T, LANES>where
T: Send,
impl<T, const LANES: usize> Sync for SimdIterWindowPtrMut<T, LANES>
impl<T, const LANES: usize> Unpin for SimdIterWindowPtrMut<T, LANES>
impl<T, const LANES: usize> UnwindSafe for SimdIterWindowPtrMut<T, LANES>where
T: RefUnwindSafe,
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