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

source

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

source

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

source

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

source

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

Implementors§