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