pub trait HasDeck { // Required methods fn deck(&self) -> &Deck; fn deck_mut(&mut self) -> &mut Deck; }
The main draw pile / stock.
Immutable access to the deck.
Mutable access to the deck.