Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/StatusReporter/
ServiceStatus.rs

1//! Lifecycle state of a discovered Mountain service.
2
3use serde::{Deserialize, Serialize};
4
5#[derive(Debug, Clone, Serialize, Deserialize)]
6pub enum Enum {
7	Running,
8
9	Degraded,
10
11	Stopped,
12
13	Error,
14}