Skip to main content

Mountain/IPC/StatusReporter/
SeverityLevel.rs

1#![allow(non_snake_case)]
2
3//! Severity rating attached to a `HealthIssue::Struct`. Drives
4//! whether the alert is informational (Low) or pages on-call
5//! (Critical).
6
7use serde::{Deserialize, Serialize};
8
9#[derive(Debug, Clone, Serialize, Deserialize)]
10pub enum Enum {
11	Low,
12
13	Medium,
14
15	High,
16
17	Critical,
18}