pub trait ActionableExtManual: IsA<Actionable> + 'static {
// Provided method
fn set_action_target(&self, target: Option<impl Into<Variant>>) { ... }
}Expand description
Trait containing manually implemented methods of
Actionable.
Provided Methods§
fn set_action_target(&self, target: Option<impl Into<Variant>>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.