ed_journals/modules/commander/models/
exploration_rank.rs

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
use std::fmt::{Display, Formatter};

use serde::Serialize;
use thiserror::Error;

use crate::try_from_deserialize_impl;

#[derive(Debug, Serialize, Clone, PartialEq)]
pub enum ExplorationRank {
    Aimless,
    MostlyAimless,
    Scout,
    Surveyor,
    Trailblazer,
    Pathfinder,
    Ranger,
    Pioneer,
    Elite,
    EliteI,
    EliteII,
    EliteIII,
    EliteIV,
    EliteV,

    #[cfg(feature = "allow-unknown")]
    #[cfg_attr(docsrs, doc(cfg(feature = "allow-unknown")))]
    Unknown(u8),
}

#[derive(Debug, Error)]
pub enum ExplorationRankError {
    #[error("Unknown exploration rank with id '{0}'")]
    UnknownExplorationRank(u8),
}

impl TryFrom<u8> for ExplorationRank {
    type Error = ExplorationRankError;

    fn try_from(value: u8) -> Result<Self, Self::Error> {
        match value {
            0 => Ok(ExplorationRank::Aimless),
            1 => Ok(ExplorationRank::MostlyAimless),
            2 => Ok(ExplorationRank::Scout),
            3 => Ok(ExplorationRank::Surveyor),
            4 => Ok(ExplorationRank::Trailblazer),
            5 => Ok(ExplorationRank::Pathfinder),
            6 => Ok(ExplorationRank::Ranger),
            7 => Ok(ExplorationRank::Pioneer),
            8 => Ok(ExplorationRank::Elite),
            9 => Ok(ExplorationRank::EliteI),
            10 => Ok(ExplorationRank::EliteII),
            11 => Ok(ExplorationRank::EliteIII),
            12 => Ok(ExplorationRank::EliteIV),
            13 => Ok(ExplorationRank::EliteV),

            #[cfg(feature = "allow-unknown")]
            _ => Ok(ExplorationRank::Unknown(value)),

            #[cfg(not(feature = "allow-unknown"))]
            _ => Err(ExplorationRankError::UnknownExplorationRank(value)),
        }
    }
}

try_from_deserialize_impl!(u8 => ExplorationRank);

impl Display for ExplorationRank {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{}",
            match self {
                ExplorationRank::Aimless => "Aimless",
                ExplorationRank::MostlyAimless => "Mostly Aimless",
                ExplorationRank::Scout => "Scout",
                ExplorationRank::Surveyor => "Surveyor",
                ExplorationRank::Trailblazer => "Trailblazer",
                ExplorationRank::Pathfinder => "Pathfinder",
                ExplorationRank::Ranger => "Ranger",
                ExplorationRank::Pioneer => "Pioneer",
                ExplorationRank::Elite => "Elite",
                ExplorationRank::EliteI => "Elite I",
                ExplorationRank::EliteII => "Elite II",
                ExplorationRank::EliteIII => "Elite III",
                ExplorationRank::EliteIV => "Elite IV",
                ExplorationRank::EliteV => "Elite V",

                #[cfg(feature = "allow-unknown")]
                ExplorationRank::Unknown(unknown) =>
                    return write!(f, "Unknown exploration rank nr: {}", unknown),
            }
        )
    }
}