Trait libhelium::subclass::prelude::ActionMapImpl

pub trait ActionMapImpl: ObjectImpl {
    // Required methods
    fn lookup_action(&self, action_name: &str) -> Option<Action>;
    fn add_action(&self, action: &Action);
    fn remove_action(&self, action_name: &str);
}

Required Methods§

fn lookup_action(&self, action_name: &str) -> Option<Action>

fn add_action(&self, action: &Action)

fn remove_action(&self, action_name: &str)

Object Safety§

This trait is not object safe.

Implementors§