pub trait IntoAction {
    fn into_boxed(self) -> Box<dyn Action>;
}
Expand description

Conversion into an Action.

Required Methods

Convert self into Box<dyn Action>.

Implementations on Foreign Types

Implementors