pub trait ShortcutActionExt: 'static {
    // Required methods
    fn activate(
        &self,
        flags: ShortcutActionFlags,
        widget: &impl IsA<Widget>,
        args: Option<&Variant>
    ) -> bool;
    fn to_str(&self) -> GString;
}

Required Methods§

source

fn activate( &self, flags: ShortcutActionFlags, widget: &impl IsA<Widget>, args: Option<&Variant> ) -> bool

source

fn to_str(&self) -> GString

Implementors§