Struct spades::Game[][src]

pub struct Game {
    pub scoring: ScoringState,
    pub current_player: usize,
    pub rotation_status: usize,
    pub deck: Vec<Card>,
    pub hands_played: Vec<[Card; 4]>,
    pub bets_placed: Vec<[i32; 4]>,
    // some fields omitted
}

Fields

Methods

impl Game
[src]

Trait Implementations

impl Debug for Game
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Game

impl Sync for Game