pub enum SimdIterWindow<'a, T, const LANES: usize> {
Simd(SimdIter<'a, T, LANES>),
Single(Iter<'a, T>),
}
Variants§
Implementations§
Source§impl<'a, T, const LANES: usize> SimdIterWindow<'a, T, LANES>
impl<'a, T, const LANES: usize> SimdIterWindow<'a, T, LANES>
pub unsafe fn wrap(other: SimdIterWindowPtr<T, LANES>) -> Self
Trait Implementations§
Source§impl<'a, T: Clone, const LANES: usize> Clone for SimdIterWindow<'a, T, LANES>
impl<'a, T: Clone, const LANES: usize> Clone for SimdIterWindow<'a, T, LANES>
Source§fn clone(&self) -> SimdIterWindow<'a, T, LANES>
fn clone(&self) -> SimdIterWindow<'a, 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<'a, T: PartialEq, const LANES: usize> PartialEq for SimdIterWindow<'a, T, LANES>
impl<'a, T: PartialEq, const LANES: usize> PartialEq for SimdIterWindow<'a, T, LANES>
Source§fn eq(&self, other: &SimdIterWindow<'a, T, LANES>) -> bool
fn eq(&self, other: &SimdIterWindow<'a, T, LANES>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a, T: Eq, const LANES: usize> Eq for SimdIterWindow<'a, T, LANES>
impl<'a, T, const LANES: usize> StructuralPartialEq for SimdIterWindow<'a, T, LANES>
Auto Trait Implementations§
impl<'a, T, const LANES: usize> Freeze for SimdIterWindow<'a, T, LANES>
impl<'a, T, const LANES: usize> RefUnwindSafe for SimdIterWindow<'a, T, LANES>where
T: RefUnwindSafe,
impl<'a, T, const LANES: usize> Send for SimdIterWindow<'a, T, LANES>where
T: Sync,
impl<'a, T, const LANES: usize> Sync for SimdIterWindow<'a, T, LANES>where
T: Sync,
impl<'a, T, const LANES: usize> Unpin for SimdIterWindow<'a, T, LANES>
impl<'a, T, const LANES: usize> UnwindSafe for SimdIterWindow<'a, 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