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	MemoryPressure,
12	ConnectionLoss,
13	QueueOverflow,
14	SecurityViolation,
15	PerformanceDegradation,
16}