[]Struct sylasteven_system_input_default::Modifiers

pub struct Modifiers {
    pub shift: bool,
    pub ctrl: bool,
    pub alt: bool,
    pub logo: bool,
}

Represents the current state of the keyboard modifiers

Each field of this struct represents a modifier and is true if this modifier is active.

Fields

shift: bool

The "shift" key

ctrl: bool

The "control" key

alt: bool

The "alt" key

The "logo" key

This is the "windows" key on PC and "command" key on Mac.

Trait Implementations

impl Clone for ModifiersState

impl Copy for ModifiersState

impl Debug for ModifiersState

impl Default for ModifiersState

impl Eq for ModifiersState

impl Hash for ModifiersState

impl PartialEq<ModifiersState> for ModifiersState

impl StructuralEq for ModifiersState

impl StructuralPartialEq for ModifiersState

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.