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

Required Methods§

source

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

source

fn add_action(&self, action_map: &Self::Type, action: &Action)

source

fn remove_action(&self, action_map: &Self::Type, action_name: &str)

Implementors§