pub trait IntoBoxedAction {
// Required method
fn into_boxed_action(self) -> BoxedAction;
}Expand description
Conversion of an Action to a BoxedAction.
Required Methods§
Sourcefn into_boxed_action(self) -> BoxedAction
fn into_boxed_action(self) -> BoxedAction
Converts self into BoxedAction.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".