pub enum CountZone {
Stock,
WaitingRoom,
Hand,
Stage,
BackStage,
WaitingRoomClimax,
LevelTotal,
}Expand description
Zone selector for count-based conditional checks.
Variants§
Stock
Player stock zone.
WaitingRoom
Player waiting room zone.
Hand
Player hand zone.
Stage
Full stage (front row + back row).
BackStage
Back row stage slots only.
WaitingRoomClimax
Climax cards in the waiting room.
LevelTotal
Sum of printed levels in the player’s level zone.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CountZone
impl<'de> Deserialize<'de> for CountZone
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for CountZone
impl Eq for CountZone
impl StructuralPartialEq for CountZone
Auto Trait Implementations§
impl Freeze for CountZone
impl RefUnwindSafe for CountZone
impl Send for CountZone
impl Sync for CountZone
impl Unpin for CountZone
impl UnwindSafe for CountZone
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more