[][src]Enum mem6_common::GameStatus

pub enum GameStatus {
    StatusStartPage,
    StatusJoined,
    Status1stCard,
    Status2ndCard,
    StatusDrink,
    StatusTakeTurn,
    StatusGameOver,
    StatusReconnect,
    StatusWaitingAckMsg,
}

the game can be in various statuses and that differentiate the UI and actions all players have the same game status

Variants

StatusStartPage

start page

StatusJoined

Joined

Status1stCard

before first card

Status2ndCard

before second card

StatusDrink

drink

StatusTakeTurn

take turn end

StatusGameOver

game over

StatusReconnect

StatusReconnect after a lost connection

StatusWaitingAckMsg

waiting ack msg

Trait Implementations

impl AsRef<str> for GameStatus[src]

impl Clone for GameStatus[src]

impl<'de> Deserialize<'de> for GameStatus[src]

impl Display for GameStatus[src]

impl PartialEq<GameStatus> for GameStatus[src]

impl Serialize for GameStatus[src]

impl StructuralPartialEq for GameStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for GameStatus

impl Send for GameStatus

impl Sync for GameStatus

impl Unpin for GameStatus

impl UnwindSafe for GameStatus

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.