use crate::models::hand::Hand; #[derive(Debug)] pub struct Player { pub name: String, pub hand: Hand, }