rgs_models 0.1.1

Tool for querying game servers. Models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
pub enum Protocol {
    Unspecified,
    Q3M,
    Q3S,
    A2S,
}

impl Default for Protocol {
    fn default() -> Protocol {
        Protocol::Unspecified
    }
}