pub enum CommandGroup<CommandGeneric: Command> {
Parallel(ScriptGroup<CommandGeneric>),
Series(ScriptGroup<CommandGeneric>),
}
Expand description
TODO: Choose a better name
Variants§
Parallel(ScriptGroup<CommandGeneric>)
Series(ScriptGroup<CommandGeneric>)
Trait Implementations§
Auto Trait Implementations§
impl<CommandGeneric> Freeze for CommandGroup<CommandGeneric>where
CommandGeneric: Freeze,
impl<CommandGeneric> RefUnwindSafe for CommandGroup<CommandGeneric>where
CommandGeneric: RefUnwindSafe,
impl<CommandGeneric> Send for CommandGroup<CommandGeneric>where
CommandGeneric: Send,
impl<CommandGeneric> Sync for CommandGroup<CommandGeneric>where
CommandGeneric: Sync,
impl<CommandGeneric> Unpin for CommandGroup<CommandGeneric>where
CommandGeneric: Unpin,
impl<CommandGeneric> UnwindSafe for CommandGroup<CommandGeneric>where
CommandGeneric: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more