[][src]Struct i3ipc::event::BindingEventInfo

pub struct BindingEventInfo {
    pub change: BindingChange,
    pub binding: Binding,
}

Data for BindingEvent.

Reports on the details of a binding that ran a command because of user input.

Fields

change: BindingChange

Indicates what sort of binding event was triggered (right now it will always be "run" but that may be expanded in the future).

binding: Binding

Trait Implementations

impl Debug for BindingEventInfo[src]

impl FromStr for BindingEventInfo[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

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.