pub struct Modifiers {
bits: u8,
}
Expand description
Map to virtual_keyboard.modifiers
modifiers values
From https://www.x.org/releases/current/doc/kbproto/xkbproto.html#Keyboard_State
Fields
bits: u8
Implementations
sourceimpl Modifiers
impl Modifiers
pub const SHIFT: Modifiers = Modifiers{bits: 1,}
pub const LOCK: Modifiers = Modifiers{bits: 2,}
pub const CONTROL: Modifiers = Modifiers{bits: 4,}
pub const MOD2: Modifiers = Modifiers{bits: 16,}
pub const MOD3: Modifiers = Modifiers{bits: 32,}
sourcepub fn from_bits(bits: u8) -> Option<Modifiers>
pub fn from_bits(bits: u8) -> Option<Modifiers>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u8) -> Modifiers
pub const fn from_bits_truncate(bits: u8) -> Modifiers
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u8) -> Modifiers
pub const unsafe fn from_bits_unchecked(bits: u8) -> Modifiers
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
sourcepub const fn intersects(&self, other: Modifiers) -> bool
pub const fn intersects(&self, other: Modifiers) -> bool
Returns true
if there are flags common to both self
and other
.
Trait Implementations
sourceimpl BitAndAssign<Modifiers> for Modifiers
impl BitAndAssign<Modifiers> for Modifiers
sourcefn bitand_assign(&mut self, other: Modifiers)
fn bitand_assign(&mut self, other: Modifiers)
Disables all flags disabled in the set.
sourceimpl BitOrAssign<Modifiers> for Modifiers
impl BitOrAssign<Modifiers> for Modifiers
sourcefn bitor_assign(&mut self, other: Modifiers)
fn bitor_assign(&mut self, other: Modifiers)
Adds the set of flags.
sourceimpl BitXorAssign<Modifiers> for Modifiers
impl BitXorAssign<Modifiers> for Modifiers
sourcefn bitxor_assign(&mut self, other: Modifiers)
fn bitxor_assign(&mut self, other: Modifiers)
Toggles the set of flags.
sourceimpl Extend<Modifiers> for Modifiers
impl Extend<Modifiers> for Modifiers
sourcefn extend<T: IntoIterator<Item = Modifiers>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Modifiers>>(&mut self, iterator: T)
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl FromIterator<Modifiers> for Modifiers
impl FromIterator<Modifiers> for Modifiers
sourceimpl Ord for Modifiers
impl Ord for Modifiers
sourceimpl PartialOrd<Modifiers> for Modifiers
impl PartialOrd<Modifiers> for Modifiers
sourcefn partial_cmp(&self, other: &Modifiers) -> Option<Ordering>
fn partial_cmp(&self, other: &Modifiers) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl SubAssign<Modifiers> for Modifiers
impl SubAssign<Modifiers> for Modifiers
sourcefn sub_assign(&mut self, other: Modifiers)
fn sub_assign(&mut self, other: Modifiers)
Disables all flags enabled in the set.
impl Copy for Modifiers
impl Eq for Modifiers
impl StructuralEq for Modifiers
impl StructuralPartialEq for Modifiers
Auto Trait Implementations
impl RefUnwindSafe for Modifiers
impl Send for Modifiers
impl Sync for Modifiers
impl Unpin for Modifiers
impl UnwindSafe for Modifiers
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.