pub trait IntoBoxedActions {
// Required method
fn into_boxed_actions(
self,
) -> impl DoubleEndedIterator<Item = BoxedAction> + ExactSizeIterator + Send + Debug + 'static;
}
Expand description
Conversion of actions to a collection of boxed actions.
Required Methods§
Sourcefn 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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.