Struct smithay_client_toolkit::seat::keyboard::ModifiersState[][src]

pub struct ModifiersState {
    pub ctrl: bool,
    pub alt: bool,
    pub shift: bool,
    pub caps_lock: bool,
    pub logo: bool,
    pub num_lock: bool,
}
Expand description

Represents the current state of the keyboard modifiers

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

For some modifiers, this means that the key is currently pressed, others are toggled (like caps lock).

Fields

ctrl: bool

The “control” key

alt: bool

The “alt” key

shift: bool

The “shift” key

caps_lock: bool

The “Caps lock” key

The “logo” key

Also known as the “windows” key on most keyboards

num_lock: bool

The “Num lock” key

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.