| 41 | /// 简单的状态指示灯 |
| 42 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 43 | pub enum DeviceHealthStatus { |
| 44 | Healthy, |
| 45 | Warning(HealthIssue), |
| 46 | Critical(HealthIssue), |
| 47 | } |
| 48 | |
| 49 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 50 | pub enum HealthIssue { |
nothing calls this directly
no outgoing calls
no test coverage detected