Trait IntoBoxedActions

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl IntoBoxedActions for BinaryHeap<BoxedAction>

Source§

impl IntoBoxedActions for LinkedList<BoxedAction>

Source§

impl IntoBoxedActions for VecDeque<BoxedAction>

Source§

impl IntoBoxedActions for Vec<BoxedAction>

Source§

impl<T0: Action> IntoBoxedActions for (T0,)

Source§

impl<T0: Action, T1: Action> IntoBoxedActions for (T0, T1)

Source§

impl<T0: Action, T1: Action, T2: Action> IntoBoxedActions for (T0, T1, T2)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action> IntoBoxedActions for (T0, T1, T2, T3)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action> IntoBoxedActions for (T0, T1, T2, T3, T4)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action, T9: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action, T9: Action, T10: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action, T9: Action, T10: Action, T11: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action, T9: Action, T10: Action, T11: Action, T12: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action, T9: Action, T10: Action, T11: Action, T12: Action, T13: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)

Source§

impl<T0: Action, T1: Action, T2: Action, T3: Action, T4: Action, T5: Action, T6: Action, T7: Action, T8: Action, T9: Action, T10: Action, T11: Action, T12: Action, T13: Action, T14: Action> IntoBoxedActions for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)

Source§

impl<const N: usize> IntoBoxedActions for [BoxedAction; N]

Implementors§