pub struct Mod { /* private fields */ }Implementations§
source§impl Mod
impl Mod
pub const NOMOD: Mod = _
pub const LSHIFTMOD: Mod = _
pub const RSHIFTMOD: Mod = _
pub const LCTRLMOD: Mod = _
pub const RCTRLMOD: Mod = _
pub const LALTMOD: Mod = _
pub const RALTMOD: Mod = _
pub const LGUIMOD: Mod = _
pub const RGUIMOD: Mod = _
pub const NUMMOD: Mod = _
pub const CAPSMOD: Mod = _
pub const MODEMOD: Mod = _
pub const RESERVEDMOD: Mod = _
sourcepub fn from_bits(bits: u16) -> Option<Mod>
pub fn from_bits(bits: u16) -> Option<Mod>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u16) -> Mod
pub const fn from_bits_truncate(bits: u16) -> Mod
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u16) -> Mod
pub const unsafe fn from_bits_unchecked(bits: u16) -> Mod
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
sourcepub const fn intersects(&self, other: Mod) -> bool
pub const fn intersects(&self, other: Mod) -> bool
Returns true if there are flags common to both self and other.
Trait Implementations§
source§impl BitAndAssign for Mod
impl BitAndAssign for Mod
source§fn bitand_assign(&mut self, other: Mod)
fn bitand_assign(&mut self, other: Mod)
Disables all flags disabled in the set.
source§impl BitOrAssign for Mod
impl BitOrAssign for Mod
source§fn bitor_assign(&mut self, other: Mod)
fn bitor_assign(&mut self, other: Mod)
Adds the set of flags.
source§impl BitXorAssign for Mod
impl BitXorAssign for Mod
source§fn bitxor_assign(&mut self, other: Mod)
fn bitxor_assign(&mut self, other: Mod)
Toggles the set of flags.
source§impl Extend<Mod> for Mod
impl Extend<Mod> for Mod
source§fn extend<T: IntoIterator<Item = Mod>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Mod>>(&mut self, iterator: T)
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl FromIterator<Mod> for Mod
impl FromIterator<Mod> for Mod
source§impl Ord for Mod
impl Ord for Mod
source§impl PartialOrd for Mod
impl PartialOrd for Mod
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 moresource§impl SubAssign for Mod
impl SubAssign for Mod
source§fn sub_assign(&mut self, other: Mod)
fn sub_assign(&mut self, other: Mod)
Disables all flags enabled in the set.
impl Copy for Mod
impl Eq for Mod
impl StructuralEq for Mod
impl StructuralPartialEq for Mod
Auto Trait Implementations§
impl RefUnwindSafe for Mod
impl Send for Mod
impl Sync for Mod
impl Unpin for Mod
impl UnwindSafe for Mod
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