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
use std::{
fmt::{self, Display},
str::FromStr,
};
use serde::{Deserialize, Serialize};
use crate::ErrorKind;
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Copy, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum Criticality {
Warning,
Low,
Medium,
High,
Critical,
}
impl Display for Criticality {
#[allow(clippy::use_debug)]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
write!(f, "{}", format!("{:?}", self).to_lowercase())
}
}
impl FromStr for Criticality {
type Err = ErrorKind;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s.to_lowercase().as_str() {
"critical" => Ok(Self::Critical),
"high" => Ok(Self::High),
"medium" => Ok(Self::Medium),
"low" => Ok(Self::Low),
"warning" => Ok(Self::Warning),
_ => Err(ErrorKind::Parse),
}
}
}