pub trait ShortcutTriggerExtManual {
    // Required methods
    fn compare(&self, trigger2: &impl IsA<ShortcutTrigger>) -> Ordering;
    fn equal(&self, trigger2: &impl IsA<ShortcutTrigger>) -> bool;
    fn hash(&self) -> u32;
    fn trigger(&self, event: &Event, enable_mnemonics: bool) -> KeyMatch;
}
Expand description

Trait containing manually implemented methods of ShortcutTrigger.

Required Methods§

source

fn compare(&self, trigger2: &impl IsA<ShortcutTrigger>) -> Ordering

source

fn equal(&self, trigger2: &impl IsA<ShortcutTrigger>) -> bool

source

fn hash(&self) -> u32

source

fn trigger(&self, event: &Event, enable_mnemonics: bool) -> KeyMatch

Implementors§