Struct KeyBind

Source
pub struct KeyBind {
    pub keycode: KeySym,
    pub mods: Vec<Mod>,
    pub trigger: Trigger,
    pub function: FunctionCall,
}

Fields§

§keycode: KeySym§mods: Vec<Mod>§trigger: Trigger§function: FunctionCall

Implementations§

Source§

impl KeyBind

Source

pub fn new( keycode: u32, mods: Vec<Mod>, trigger: Trigger, function: FunctionCall, ) -> Self

Examples found in repository?
examples/intro.rs (lines 10-15)
5fn main(){
6     // create new KeyStorage
7    let mut storage = KeyStorage::new();
8
9    // Call crtl_a_pressed when Control + a is pressed
10    let ctrl_a = KeyBind::new(
11        keysym::XK_a,
12        vec![Mod::Control],
13        Trigger::Pressed,
14        ctrl_a_pressed,
15    );
16
17    // Call crtl-alt_a_pressed when Control + Alt + a is pressed
18    let ctrl_alt_a = KeyBind::new(
19        keysym::XK_a,
20        vec![Mod::Control, Mod::Alt],
21        Trigger::Pressed,
22        ctrl_alt_a_pressed,
23    );
24    
25    // Add KeyBinds to storage
26    storage.add(ctrl_a);
27    storage.add(ctrl_alt_a);
28
29    // start storage
30    storage.start();
31}

Trait Implementations§

Source§

impl Debug for KeyBind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.