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
//! Art
//!
//! 一个描述美术的库

// re-export public api
pub use kinds::PrimaryColor;
pub use kinds::SecondaryColor;
pub use utils::mix;

pub mod kinds {
    /// 采用 RGB 色彩模式的主要颜色。
    #[derive(PartialEq, Debug)]
    pub enum PrimaryColor {
        Red,
        Green,
        Blue,
    }
    /// 采用 RGB 色彩模式的次要颜色。
    #[derive(PartialEq, Debug)]
    pub enum SecondaryColor {
        Orange,
        Black,
        Purple,
    }
}

pub mod utils {
    use crate::kinds::*;

    /// 等量的混合两个主要颜色
    /// 来创建一个次要颜色。
    pub fn mix(c1: PrimaryColor, c2: PrimaryColor) -> SecondaryColor {
        if c1 == PrimaryColor::Red && c2 == PrimaryColor::Green {
            SecondaryColor::Orange
        } else if c1 == PrimaryColor::Red && c2 == PrimaryColor::Blue {
            SecondaryColor::Black
        } else {
            SecondaryColor::Purple
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_mix() {
        assert_eq!(
            mix(PrimaryColor::Red, PrimaryColor::Green),
            SecondaryColor::Orange
        );
        assert_eq!(
            mix(PrimaryColor::Red, PrimaryColor::Blue),
            SecondaryColor::Black
        );
        assert_eq!(
            mix(PrimaryColor::Red, PrimaryColor::Red),
            SecondaryColor::Purple
        );
    }
}