pub trait IntoAction {
// Required method
fn into_action<S: ToString>(self, label: S) -> Action;
}Expand description
Allows converting something into an Action by providing a label.
Required Methods§
fn into_action<S: ToString>(self, label: S) -> Action
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.