Skip to main content

Mountain/IPC/StatusReporter/
HealthIssueType.rs

1#![allow(non_snake_case)]
2
3//! Discriminator for `HealthIssue::Struct` - the kind of
4//! anomaly the reporter detected during a health check.
5
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub enum Enum {
10	HighLatency,
11
12	MemoryPressure,
13
14	ConnectionLoss,
15
16	QueueOverflow,
17
18	SecurityViolation,
19
20	PerformanceDegradation,
21}