#[repr(transparent)]pub struct BVec4A(_);
Expand description
A 4-dimensional SIMD vector mask.
This type is 16 byte aligned and is backed by a SIMD vector. If SIMD is not available
BVec4A
will be a type alias for BVec4
.
Implementations§
Trait Implementations§
source§impl BitAndAssign<BVec4A> for BVec4A
impl BitAndAssign<BVec4A> for BVec4A
source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moresource§impl BitOrAssign<BVec4A> for BVec4A
impl BitOrAssign<BVec4A> for BVec4A
source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moresource§impl BitXorAssign<BVec4A> for BVec4A
impl BitXorAssign<BVec4A> for BVec4A
source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreimpl Copy for BVec4A
impl Eq for BVec4A
Auto Trait Implementations§
impl RefUnwindSafe for BVec4A
impl Send for BVec4A
impl Sync for BVec4A
impl Unpin for BVec4A
impl UnwindSafe for BVec4A
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