Struct bevy::prelude::BVec2[][src]

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

A 2-dimensional boolean vector.

Implementations

impl BVec2[src]

pub fn new(x: bool, y: bool) -> BVec2[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 = BVec2

The resulting type after applying the & operator.

impl BitAndAssign<BVec2> for BVec2[src]

impl BitOr<BVec2> for BVec2[src]

type Output = BVec2

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 From<BVec2> for [bool; 2][src]

impl From<BVec2> for [u32; 2][src]

impl From<BVec2> for XY<bool>[src]

impl Hash for BVec2[src]

impl Not for BVec2[src]

type Output = BVec2

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

impl RefUnwindSafe for BVec2

impl Send for BVec2

impl Sync for BVec2

impl Unpin for BVec2

impl UnwindSafe for BVec2

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CallHasher for T where
    T: Hash + ?Sized

impl<T> CallHasher for T where
    T: Hash

impl<T> CloneAny for T where
    T: Any + Clone

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> DynEq for T where
    T: Any + Eq

impl<T> DynHash for T where
    T: DynEq + Hash

impl<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

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

impl<T> FromWorld for T where
    T: Default

impl<T> Instrument for T[src]

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

impl<N> NodeTrait for N where
    N: Copy + Ord + Hash
[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.

impl<T> TypeData for T where
    T: 'static + Send + Sync + Clone

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,