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.