pub struct Control(u32);
Tuple Fields§
§0: u32
Implementations§
source§impl Control
impl Control
pub const GROUPS_WRAP: Control = _
pub const INTERNAL_MODS: Control = _
pub const IGNORE_LOCK_MODS: Control = _
pub const PER_KEY_REPEAT: Control = _
pub const CONTROLS_ENABLED: Control = _
source§impl Control
impl Control
sourcepub fn contains(self, flag: impl Into<u32>) -> bool
pub fn contains(self, flag: impl Into<u32>) -> bool
Check if this object has all bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
sourcepub fn intersects(self, flag: impl Into<u32>) -> bool
pub fn intersects(self, flag: impl Into<u32>) -> bool
Check if this object has some bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
Trait Implementations§
source§impl BitAndAssign<u32> for Control
impl BitAndAssign<u32> for Control
source§fn bitand_assign(&mut self, other: u32)
fn bitand_assign(&mut self, other: u32)
Performs the
&=
operation. Read moresource§impl BitAndAssign for Control
impl BitAndAssign for Control
source§fn bitand_assign(&mut self, other: Control)
fn bitand_assign(&mut self, other: Control)
Performs the
&=
operation. Read moresource§impl BitOrAssign<u32> for Control
impl BitOrAssign<u32> for Control
source§fn bitor_assign(&mut self, other: u32)
fn bitor_assign(&mut self, other: u32)
Performs the
|=
operation. Read moresource§impl BitOrAssign for Control
impl BitOrAssign for Control
source§fn bitor_assign(&mut self, other: Control)
fn bitor_assign(&mut self, other: Control)
Performs the
|=
operation. Read moresource§impl Ord for Control
impl Ord for Control
source§impl PartialEq for Control
impl PartialEq for Control
source§impl PartialOrd for Control
impl PartialOrd for Control
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Control
impl Eq for Control
impl StructuralPartialEq for Control
Auto Trait Implementations§
impl Freeze for Control
impl RefUnwindSafe for Control
impl Send for Control
impl Sync for Control
impl Unpin for Control
impl UnwindSafe for Control
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