#[repr(C, align(1))]pub struct BVec3 {
pub x: bool,
pub y: bool,
pub z: bool,
}
Expand description
A 3-dimensional bool
vector mask.
Fields§
§x: bool
§y: bool
§z: bool
Implementations§
Trait Implementations§
source§impl BitAndAssign<BVec3> for BVec3
impl BitAndAssign<BVec3> for BVec3
source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moresource§impl BitOrAssign<BVec3> for BVec3
impl BitOrAssign<BVec3> for BVec3
source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moresource§impl BitXorAssign<BVec3> for BVec3
impl BitXorAssign<BVec3> for BVec3
source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moresource§impl PartialEq<BVec3> for BVec3
impl PartialEq<BVec3> for BVec3
impl Copy for BVec3
impl Eq for BVec3
impl StructuralEq for BVec3
impl StructuralPartialEq for BVec3
Auto Trait Implementations§
impl RefUnwindSafe for BVec3
impl Send for BVec3
impl Sync for BVec3
impl Unpin for BVec3
impl UnwindSafe for BVec3
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