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