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
//! This contains the [`Prefix`](Prefix) enum.
use std::fmt;

/// The prefix. Usually [`Cargo`](Self::Cargo).
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub enum Prefix {
    /// The cargo prefix. 99% of the time this is used.
    Cargo,

    /// Other, custom prefixes.
    Custom(String),
}

impl Default for Prefix {
    /// The default prefix is [`Cargo`](Self::Cargo).
    fn default() -> Self {
        Self::Cargo
    }
}

impl fmt::Display for Prefix {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let prefix = match self {
            Self::Cargo => "cargo",
            Self::Custom(prefix) => prefix,
        };

        prefix.fmt(f)
    }
}

#[cfg(test)]
mod tests {
    use crate::Prefix;

    #[test]
    fn test_default() {
        let prefix = Prefix::default();
        assert!(matches!(prefix, Prefix::Cargo))
    }

    #[test]
    fn test_display_cargo() {
        let prefix = Prefix::Cargo;
        let string = format!("{}", prefix);
        assert_eq!(string, "cargo")
    }

    #[test]
    fn test_display_custom() {
        let prefix = Prefix::Custom("custom".into());
        let string = format!("{}", prefix);
        assert_eq!(string, "custom")
    }
}