1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use std::str::FromStr;

#[derive(Clone, Debug, Eq, PartialEq)]
pub enum AuthResult {
    Pass,
    Fail,
    Error,
}

impl ToString for AuthResult {
    fn to_string(&self) -> String {
        match self {
            AuthResult::Pass => String::from("pass"),
            AuthResult::Fail => String::from("fail"),
            AuthResult::Error => String::from("error"),
        }
    }
}

impl FromStr for AuthResult {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "pass" => Ok(AuthResult::Pass),
            "fail" => Ok(AuthResult::Fail),
            "error" => Ok(AuthResult::Error),
            _ => Err(()),
        }
    }
}