pub trait ActionableImplExt: ObjectSubclass {
    // Required methods
    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§

source

fn parent_action_name(&self, actionable: &Self::Type) -> Option<GString>

source

fn parent_action_target_value(&self, actionable: &Self::Type) -> Option<Variant>

source

fn parent_set_action_name(&self, actionable: &Self::Type, name: Option<&str>)

source

fn parent_set_action_target_value( &self, actionable: &Self::Type, value: Option<&Variant> )

Implementors§