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
//! # Stage
//!
//! `stage` is the module providing the type describing the distributed ledger stage (development,
//! testing or production).

use std::fmt;

use base::Result;
use base::Checkable;
use base::Sizable;
use base::Datable;
use base::Serializable;

/// Enum representing the distributed ledger stage (development, testing or production).
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, Hash, Serialize, Deserialize)]
#[repr(u8)]
pub enum Stage {
    Development,
    Testing,
    Production,
}

impl Stage {
    /// Parses a `Stage` from a string.
    pub fn parse(s: &str) -> Result<Stage> {
        match s {
            "development" => Ok(Stage::Development),
            "testing" => Ok(Stage::Testing),
            "production" => Ok(Stage::Production),
            _ => Err("unknown stage".into())
        }
    }
}

impl fmt::Display for Stage {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Stage::Development => write!(f, "development"),
            Stage::Testing => write!(f, "testing"),
            Stage::Production => write!(f, "production"),
        }
    }
}

impl Default for Stage {
    fn default() -> Stage {
        Stage::Development
    }
}

impl Sizable for Stage {
    fn size(&self) -> u64 {
        0u8.size()
    }
}

impl Checkable for Stage {}

impl Serializable for Stage {}

impl Datable for Stage {}