pub trait ActionableImpl: WidgetImpl {
    fn action_name(&self, actionable: &Self::Type) -> Option<GString>;
    fn action_target_value(&self, actionable: &Self::Type) -> Option<Variant>;
    fn set_action_name(&self, actionable: &Self::Type, name: Option<&str>);
    fn set_action_target_value(
        &self,
        actionable: &Self::Type,
        value: Option<&Variant>
    ); }

Required methods

Implementors