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§
Trait Implementations§
source§impl PartialEq for Vec2b
impl PartialEq for Vec2b
impl Copy for Vec2b
impl Eq for Vec2b
impl StructuralEq for Vec2b
impl StructuralPartialEq for Vec2b
Auto Trait Implementations§
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> 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