DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Binary/Build/DnsCommands/DnsHealthStatus.rs
1//! Aggregated DNS health snapshot (server / zone / forward
2//! status + most recent error) returned by
3//! `dns_get_health_status`.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct DnsHealthStatus {
9 pub server_status:String,
10
11 pub zone_status:String,
12
13 pub forward_status:String,
14
15 pub last_error:Option<String>,
16}