bevy_sequential_actions

Type Alias 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 IntoBoxedAction for BoxedAction

Source§

fn into_boxed_action(self) -> BoxedAction

Converts self into BoxedAction.
Source§

impl IntoBoxedActions for BoxedAction

Source§

fn into_boxed_actions( self, ) -> impl DoubleEndedIterator<Item = BoxedAction> + ExactSizeIterator + Send + Debug + 'static

Converts self into collection of boxed actions.