gn_matchmaking_state/models/
mod.rs1#[derive(Debug, Clone)]
2pub struct Match {
3 pub region: String,
4 pub game: String,
5 pub players: Vec<String>,
6 pub mode: String,
7 pub ai: bool,
8}
9
10unsafe impl Send for Match {}
11unsafe impl Sync for Match {}
12