1 2 3 4 5 6 7 8 9
/// Player info. #[derive(Debug)] pub struct Player { pub name: String, pub clan: String, pub country: i32, pub score: i32, pub is_spectator: bool, }