diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-11 22:44:21 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-11 22:44:21 +0100 |
commit | 86c255dfeabc60b0ef46ff78bc487c61c9548c79 (patch) | |
tree | 245e6b8f5675a34358478e3a663db88d948c3f70 /src/dns_config.rs | |
parent | 5f946d485c62feca79e907a2d071a291dcc8c7bf (diff) | |
download | D53-86c255dfeabc60b0ef46ff78bc487c61c9548c79.tar.gz D53-86c255dfeabc60b0ef46ff78bc487c61c9548c79.zip |
Less spam on stdout
Diffstat (limited to 'src/dns_config.rs')
-rw-r--r-- | src/dns_config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dns_config.rs b/src/dns_config.rs index 1356fc7..0697270 100644 --- a/src/dns_config.rs +++ b/src/dns_config.rs @@ -19,7 +19,7 @@ const CNAME_TARGET_METADATA_TAG: &str = "cname_target"; // ---- Extract DNS config from Consul catalog ---- -#[derive(Debug)] +#[derive(Debug, Eq, PartialEq, Default)] pub struct DnsConfig { pub entries: HashMap<DnsEntryKey, DnsEntryValue>, } |