[][src]Struct beryllium::KeyModifiers

pub struct KeyModifiers(_);

Holds flags for the keyboard modifier keys being held.

Methods

impl KeyModifiers[src]

pub const fn caps_lock(self) -> bool[src]

pub const fn with_caps_lock(self, bit: bool) -> Self[src]

pub const fn left_alt(self) -> bool[src]

pub const fn with_left_alt(self, bit: bool) -> Self[src]

pub const fn left_ctrl(self) -> bool[src]

pub const fn with_left_ctrl(self, bit: bool) -> Self[src]

pub const fn left_gui(self) -> bool[src]

pub const fn with_left_gui(self, bit: bool) -> Self[src]

pub const fn left_shift(self) -> bool[src]

pub const fn with_left_shift(self, bit: bool) -> Self[src]

pub const fn mode(self) -> bool[src]

The AltGr key

pub const fn with_mode(self, bit: bool) -> Self[src]

pub const fn num_lock(self) -> bool[src]

pub const fn with_num_lock(self, bit: bool) -> Self[src]

pub const fn right_alt(self) -> bool[src]

pub const fn with_right_alt(self, bit: bool) -> Self[src]

pub const fn right_ctrl(self) -> bool[src]

pub const fn with_right_ctrl(self, bit: bool) -> Self[src]

pub const fn right_gui(self) -> bool[src]

pub const fn with_right_gui(self, bit: bool) -> Self[src]

pub const fn right_shift(self) -> bool[src]

pub const fn with_right_shift(self, bit: bool) -> Self[src]

Trait Implementations

impl PartialEq<KeyModifiers> for KeyModifiers[src]

impl Clone for KeyModifiers[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for KeyModifiers[src]

impl Eq for KeyModifiers[src]

impl Copy for KeyModifiers[src]

impl Debug for KeyModifiers[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]