#[non_exhaustive]
pub struct BindingEventOps { pub command: String, pub event_state_mask: Vec<String, Global>, pub input_code: u8, pub symbol: Option<String>, pub input_type: InputType, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
command: String

The command associated with the binding.

event_state_mask: Vec<String, Global>

An array of strings that correspond to each modifier key for the binding.

input_code: u8

For keyboard bindcodes, this is the key code for the binding. For mouse bindings, this is the X11 button number, if there is an equivalent. In all other cases, this will be 0.

symbol: Option<String>

For keyboard bindsyms, this is the bindsym for the binding. Otherwise, this will be null.

input_type: InputType

The input type that triggered the binding. This is either keyboard or mouse.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.