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