pub trait ActionableImplExt: ObjectSubclass {
    fn parent_action_name(&self, actionable: &Self::Type) -> Option<GString>;
    fn parent_action_target_value(
        &self,
        actionable: &Self::Type
    ) -> Option<Variant>; fn parent_set_action_name(
        &self,
        actionable: &Self::Type,
        name: Option<&str>
    ); fn parent_set_action_target_value(
        &self,
        actionable: &Self::Type,
        value: Option<&Variant>
    ); }

Required methods

Implementors