Struct winit::ModifiersState
[−]
[src]
pub struct ModifiersState {
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
logo: bool
The "logo" key
This is the "windows" key on PC and "command" key on Mac.
Trait Implementations
impl Default for ModifiersState[src]
fn default() -> ModifiersState[src]
Returns the "default value" for a type. Read more
impl Debug for ModifiersState[src]
impl Clone for ModifiersState[src]
fn clone(&self) -> ModifiersState[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more