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