[][src]Struct glam::bool::BVec2

#[repr(transparent)]pub struct BVec2(_);

A 2-dimensional boolean vector.

Implementations

impl BVec2[src]

pub fn new(x: bool, y: bool) -> Self[src]

Creates a new vector mask.

pub fn bitmask(self) -> u32[src]

Returns a bitmask with the lowest two bits set from the elements of self.

A true element results in a 1 bit and a false element in a 0 bit. Element x goes into the first lowest bit, element y into the second, etc.

pub fn any(self) -> bool[src]

Returns true if any of the elements are true, false otherwise.

pub fn all(self) -> bool[src]

Returns true if all the elements are true, false otherwise.

Trait Implementations

impl AsRef<[bool; 2]> for BVec2[src]

impl BitAnd<BVec2> for BVec2[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<BVec2> for BVec2[src]

impl BitOr<BVec2> for BVec2[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<BVec2> for BVec2[src]

impl Clone for BVec2[src]

impl Copy for BVec2[src]

impl Debug for BVec2[src]

impl Default for BVec2[src]

impl Display for BVec2[src]

impl Eq for BVec2[src]

impl Hash for BVec2[src]

impl Not for BVec2[src]

type Output = Self

The resulting type after applying the ! operator.

impl Ord for BVec2[src]

impl PartialEq<BVec2> for BVec2[src]

impl PartialOrd<BVec2> for BVec2[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.