pub struct BoolVector2D {
pub x: bool,
pub y: bool,
}Expand description
A 2d vector of booleans, useful for component-wise logic operations.
Fields§
§x: bool§y: boolImplementations§
Source§impl BoolVector2D
impl BoolVector2D
Sourcepub fn none(self) -> bool
pub fn none(self) -> bool
Returns true if all components are false and false otherwise. Negation of any().
Sourcepub fn and(self, other: BoolVector2D) -> BoolVector2D
pub fn and(self, other: BoolVector2D) -> BoolVector2D
Returns new vector with by-component AND operation applied.
Sourcepub fn or(self, other: BoolVector2D) -> BoolVector2D
pub fn or(self, other: BoolVector2D) -> BoolVector2D
Returns new vector with by-component OR operation applied.
Sourcepub fn not(self) -> BoolVector2D
pub fn not(self) -> BoolVector2D
Returns new vector with results of negation operation on each component.
Sourcepub fn select_point<T, U>(
self,
a: Point2D<T, U>,
b: Point2D<T, U>,
) -> Point2D<T, U>
pub fn select_point<T, U>( self, a: Point2D<T, U>, b: Point2D<T, U>, ) -> Point2D<T, U>
Returns point, each component of which or from a, or from b depending on truly value
of corresponding vector component. true selects value from a and false from b.
Sourcepub fn select_vector<T, U>(
self,
a: Vector2D<T, U>,
b: Vector2D<T, U>,
) -> Vector2D<T, U>
pub fn select_vector<T, U>( self, a: Vector2D<T, U>, b: Vector2D<T, U>, ) -> Vector2D<T, U>
Returns vector, each component of which or from a, or from b depending on truly value
of corresponding vector component. true selects value from a and false from b.
Sourcepub fn select_size<T, U>(self, a: Size2D<T, U>, b: Size2D<T, U>) -> Size2D<T, U>
pub fn select_size<T, U>(self, a: Size2D<T, U>, b: Size2D<T, U>) -> Size2D<T, U>
Returns size, each component of which or from a, or from b depending on truly value
of corresponding vector component. true selects value from a and false from b.
Trait Implementations§
Source§impl Clone for BoolVector2D
impl Clone for BoolVector2D
Source§fn clone(&self) -> BoolVector2D
fn clone(&self) -> BoolVector2D
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BoolVector2D
impl Debug for BoolVector2D
Source§impl Hash for BoolVector2D
impl Hash for BoolVector2D
Source§impl PartialEq for BoolVector2D
impl PartialEq for BoolVector2D
impl Copy for BoolVector2D
impl Eq for BoolVector2D
impl StructuralPartialEq for BoolVector2D
Auto Trait Implementations§
impl Freeze for BoolVector2D
impl RefUnwindSafe for BoolVector2D
impl Send for BoolVector2D
impl Sync for BoolVector2D
impl Unpin for BoolVector2D
impl UnwindSafe for BoolVector2D
Blanket Implementations§
Source§impl<T> AnyVarValue for T
impl<T> AnyVarValue for T
Source§fn clone_boxed(&self) -> BoxAnyVarValue
fn clone_boxed(&self) -> BoxAnyVarValue
Source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
self and other are equal.Source§fn try_swap(&mut self, other: &mut (dyn AnyVarValue + 'static)) -> bool
fn try_swap(&mut self, other: &mut (dyn AnyVarValue + 'static)) -> bool
other if both are of the same type.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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more