pub enum SimdIterWindowPtr<T, const LANES: usize> {
Simd(SimdIterPtr<T, LANES>),
Single(IterPtr<T>),
}
Variants§
Simd(SimdIterPtr<T, LANES>)
Single(IterPtr<T>)
Trait Implementations§
Source§impl<T: Clone, const LANES: usize> Clone for SimdIterWindowPtr<T, LANES>
impl<T: Clone, const LANES: usize> Clone for SimdIterWindowPtr<T, LANES>
Source§fn clone(&self) -> SimdIterWindowPtr<T, LANES>
fn clone(&self) -> SimdIterWindowPtr<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 moreimpl<T: Copy, const LANES: usize> Copy for SimdIterWindowPtr<T, LANES>
impl<T: Eq, const LANES: usize> Eq for SimdIterWindowPtr<T, LANES>
impl<T, const LANES: usize> StructuralPartialEq for SimdIterWindowPtr<T, LANES>
Auto Trait Implementations§
impl<T, const LANES: usize> Freeze for SimdIterWindowPtr<T, LANES>
impl<T, const LANES: usize> RefUnwindSafe for SimdIterWindowPtr<T, LANES>where
T: RefUnwindSafe,
impl<T, const LANES: usize> Send for SimdIterWindowPtr<T, LANES>where
T: Sync,
impl<T, const LANES: usize> Sync for SimdIterWindowPtr<T, LANES>
impl<T, const LANES: usize> Unpin for SimdIterWindowPtr<T, LANES>
impl<T, const LANES: usize> UnwindSafe for SimdIterWindowPtr<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