spades 1.2.8

A popular four person card game implemented in Rust.
Documentation
use serde::{Serialize, Deserialize};
#[cfg(feature = "server")]
use oasgen::OaSchema;

/// Current game stage, field of `Game`. 
/// 
/// The `Betting` and `Trick` variants have a `usize` value between 0
/// and 3, inclusive, that refers to the number of players that have placed bets or played cards in the trick, 
/// respectively.
/// 
/// **Example:** `State::Trick(2)` means the game is in the card playing stage, and two players have played their cards.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "server", derive(oasgen::OaSchema))]
pub enum State {
    NotStarted,
    Betting(usize),
    Trick(usize),
    Completed,
    Aborted,
}