pub trait IntoBoxedAction: Send + Sync + 'static {
fn into_boxed(self) -> BoxedAction;
}Expand description
Conversion into a BoxedAction.
Required Methods
sourcefn into_boxed(self) -> BoxedAction
fn into_boxed(self) -> BoxedAction
Convert self into BoxedAction.