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
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[serde(rename_all = "snake_case")]
#[allow(missing_docs)]
#[non_exhaustive]
pub enum BorderColour {
Black,
Borderless,
Gold,
White,
Silver,
}
impl Default for BorderColour {
fn default() -> Self {
BorderColour::Black
}
}
impl std::fmt::Display for BorderColour {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
use BorderColour::*;
write!(
f,
"{}",
match self {
Black => "black",
Borderless => "borderless",
Gold => "gold",
White => "white",
Silver => "silver",
}
)
}
}