pub struct ScriptGroup<CommandGeneric: Command> {
pub bail: bool,
pub first: Script<CommandGeneric>,
pub rest: VecDeque<Script<CommandGeneric>>,
}
Fields§
§bail: bool
§first: Script<CommandGeneric>
§rest: VecDeque<Script<CommandGeneric>>
Trait Implementations§
Auto Trait Implementations§
impl<CommandGeneric> Freeze for ScriptGroup<CommandGeneric>where
CommandGeneric: Freeze,
impl<CommandGeneric> RefUnwindSafe for ScriptGroup<CommandGeneric>where
CommandGeneric: RefUnwindSafe,
impl<CommandGeneric> Send for ScriptGroup<CommandGeneric>where
CommandGeneric: Send,
impl<CommandGeneric> Sync for ScriptGroup<CommandGeneric>where
CommandGeneric: Sync,
impl<CommandGeneric> Unpin for ScriptGroup<CommandGeneric>where
CommandGeneric: Unpin,
impl<CommandGeneric> UnwindSafe for ScriptGroup<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