Struct emath::Vec2b

source ·
pub struct Vec2b {
    pub x: bool,
    pub y: bool,
}
Expand description

Two bools, one for each axis (X and Y).

Fields§

§x: bool§y: bool

Implementations§

source§

impl Vec2b

source

pub const FALSE: Self = _

source

pub const TRUE: Self = _

source

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

source

pub fn any(&self) -> bool

source

pub fn all(&self) -> bool

Are both x and y true?

source

pub fn and(&self, other: impl Into<Self>) -> Self

source

pub fn or(&self, other: impl Into<Self>) -> Self

Trait Implementations§

source§

impl Clone for Vec2b

source§

fn clone(&self) -> Vec2b

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Vec2b

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Vec2b

source§

fn default() -> Vec2b

Returns the “default value” for a type. Read more
source§

impl From<[bool; 2]> for Vec2b

source§

fn from([x, y]: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<Vec2b> for Vec2

source§

fn from(v: Vec2b) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Vec2b

source§

fn from(val: bool) -> Self

Converts to this type from the input type.
source§

impl Index<usize> for Vec2b

§

type Output = bool

The returned type after indexing.
source§

fn index(&self, index: usize) -> &bool

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for Vec2b

source§

fn index_mut(&mut self, index: usize) -> &mut bool

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Not for Vec2b

§

type Output = Vec2b

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl PartialEq for Vec2b

source§

fn eq(&self, other: &Vec2b) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Vec2b

source§

impl Eq for Vec2b

source§

impl StructuralPartialEq for Vec2b

Auto Trait Implementations§

§

impl Freeze for Vec2b

§

impl RefUnwindSafe for Vec2b

§

impl Send for Vec2b

§

impl Sync for Vec2b

§

impl Unpin for Vec2b

§

impl UnwindSafe for Vec2b

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.