pub trait TranslateAccel {
    fn call(&mut self, args: TranslateAccelArgs<'_>) -> TranslateAccelResult;
}
Expand description

Consumers need to implement this trait in order to be called back as part of the keyboard processing.

See plugin_register_add_accelerator_register().

Required Methods

The actual callback function.

Implementors