pub type BoxedAction = Box<dyn Action>;Expand description
A boxed Action.
Aliased Type§
pub struct BoxedAction(/* private fields */);Trait Implementations§
Source§impl Debug for BoxedAction
impl Debug for BoxedAction
Source§impl IntoBoxedAction for BoxedAction
impl IntoBoxedAction for BoxedAction
Source§fn into_boxed_action(self) -> BoxedAction
fn into_boxed_action(self) -> BoxedAction
Converts
self into BoxedAction.Source§impl IntoBoxedActions for BoxedAction
impl IntoBoxedActions for BoxedAction
Source§fn into_boxed_actions(
self,
) -> impl DoubleEndedIterator<Item = BoxedAction> + ExactSizeIterator + Send + Debug + 'static
fn into_boxed_actions( self, ) -> impl DoubleEndedIterator<Item = BoxedAction> + ExactSizeIterator + Send + Debug + 'static
Converts
self into collection of boxed actions.