[][src]Struct i3ipc::event::inner::Binding

pub struct Binding {
    pub command: String,
    pub event_state_mask: Vec<String>,
    pub input_code: i32,
    pub symbol: Option<String>,
    pub input_type: InputType,
}

Contains details about the binding that was run.

Fields

command: String

The i3 command that is configured to run for this binding.

event_state_mask: Vec<String>

The group and modifier keys that were configured with this binding.

input_code: i32

If the binding was configured with blindcode, this will be the key code that was given for the binding. If the binding is a mouse binding, it will be the number of times the mouse button was pressed. Otherwise it will be 0.

symbol: Option<String>

If this is a keyboard binding that was configured with bindsym, this field will contain the given symbol. Otherwise it will be None.

input_type: InputType

Will be Keyboard or Mouse depending on whether this was a keyboard or mouse binding.

Trait Implementations

impl PartialEq<Binding> for Binding[src]

impl Debug for Binding[src]

Auto Trait Implementations

impl Send for Binding

impl Sync for Binding

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.