logo
pub trait ActionablePlus {
    fn set_action<A: ActionName>(&self, value: A::Target)
    where
        A::Target: ToVariant
; fn set_stateless_action<A: ActionName>(&self, unit_type: &())
    where
        A::Target: EmptyType
; }
Expand description

Type safe interface for gtk::prelude::ActionableExt.

Required methods

Set a new stateful action with a default state value.

Set a new stateless action.

Implementors