1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Warning: incomplete
//!
//! This is a draft of the constants that you can match against with certain values given inside
//! responses.

pub enum Source {
    RISKIQ,
    PINGLY,
    DNSRES,
    KASPERSKY,
}

impl Source {
    pub fn string(&self) -> String {
        match *self {
            Source::RISKIQ => "riskiq".to_string(),
            Source::PINGLY => "pingly".to_string(),
            Source::DNSRES => "dnsres".to_string(),
            Source::KASPERSKY => "kaspersky".to_string(),
        }
    }
}