pub trait ActionMapExtManual {
    // Required method
    fn add_action_entries(
        &self,
        entries: impl IntoIterator<Item = ActionEntry<Self>>
    ) -> Result<(), BoolError>
       where Self: IsA<ActionMap>;
}

Required Methods§

source

fn add_action_entries( &self, entries: impl IntoIterator<Item = ActionEntry<Self>> ) -> Result<(), BoolError>where Self: IsA<ActionMap>,

Implementors§