Skip to main content

Mountain/IPC/StatusReporter/
HealthIssueType.rs

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