Skip to main content

Mountain/IPC/StatusReporter/
HealthIssueType.rs

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