Struct simba::simd::AutoBoolSimd
source · [−]#[repr(align(16))]pub struct AutoBoolSimd<N>(pub N);
Expand description
A SIMD boolean structure that implements all the relevant traits from num
an simba
.
This is needed to overcome the orphan rules.
Tuple Fields
0: N
Trait Implementations
sourceimpl<N: Clone> Clone for AutoBoolSimd<N>
impl<N: Clone> Clone for AutoBoolSimd<N>
sourcefn clone(&self) -> AutoBoolSimd<N>
fn clone(&self) -> AutoBoolSimd<N>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<N: Debug> Debug for AutoBoolSimd<N>
impl<N: Debug> Debug for AutoBoolSimd<N>
sourceimpl<N: PartialEq> PartialEq<AutoBoolSimd<N>> for AutoBoolSimd<N>
impl<N: PartialEq> PartialEq<AutoBoolSimd<N>> for AutoBoolSimd<N>
sourcefn eq(&self, other: &AutoBoolSimd<N>) -> bool
fn eq(&self, other: &AutoBoolSimd<N>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AutoBoolSimd<N>) -> bool
fn ne(&self, other: &AutoBoolSimd<N>) -> bool
This method tests for !=
.
impl<N: Copy> Copy for AutoBoolSimd<N>
impl<N: Eq> Eq for AutoBoolSimd<N>
impl<N> StructuralEq for AutoBoolSimd<N>
impl<N> StructuralPartialEq for AutoBoolSimd<N>
Auto Trait Implementations
impl<N> RefUnwindSafe for AutoBoolSimd<N> where
N: RefUnwindSafe,
impl<N> Send for AutoBoolSimd<N> where
N: Send,
impl<N> Sync for AutoBoolSimd<N> where
N: Sync,
impl<N> Unpin for AutoBoolSimd<N> where
N: Unpin,
impl<N> UnwindSafe for AutoBoolSimd<N> where
N: 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