pub enum TurnContinuation {
LoadoutContinues,
LoadoutEnds(PlayerNumber),
}
Variants§
LoadoutContinues
LoadoutEnds(PlayerNumber)
PlayerNumber is the first player to go in the next loadout
Trait Implementations§
Source§impl Clone for TurnContinuation
impl Clone for TurnContinuation
Source§fn clone(&self) -> TurnContinuation
fn clone(&self) -> TurnContinuation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for TurnContinuation
impl RefUnwindSafe for TurnContinuation
impl Send for TurnContinuation
impl Sync for TurnContinuation
impl Unpin for TurnContinuation
impl UnwindSafe for TurnContinuation
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