Type Alias bevy_sequential_actions::BoxedAction

source ·
pub type BoxedAction = Box<dyn Action>;
Expand description

A boxed Action.

Aliased Type§

struct BoxedAction(/* private fields */);

Trait Implementations§

source§

impl Debug for BoxedAction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> From<T> for BoxedAction
where T: Action,

source§

fn from(action: T) -> Self

Converts to this type from the input type.