pub trait IntoBoxedAction: Send + Sync + 'static {
    fn into_boxed(self) -> BoxedAction;
}
Expand description

Conversion into a BoxedAction.

Required Methods

Convert self into BoxedAction.

Implementors