cargo fmt
This commit is contained in:
parent
49d94dae1d
commit
b60f5b1694
1 changed files with 16 additions and 3 deletions
|
@ -109,9 +109,22 @@ fn parse_autodiscovered_address(
|
|||
}
|
||||
|
||||
impl AutodiscoveredAddresses {
|
||||
fn strip_timestamps(&self) -> (HashMap<&str, Option<Ipv4Addr>>, HashMap<&str, Option<Ipv6Addr>>) {
|
||||
(self.ipv4.iter().map(|(k, v)| (k.as_str(), v.address)).collect(),
|
||||
self.ipv6.iter().map(|(k, v)| (k.as_str(), v.address)).collect())
|
||||
fn strip_timestamps(
|
||||
&self,
|
||||
) -> (
|
||||
HashMap<&str, Option<Ipv4Addr>>,
|
||||
HashMap<&str, Option<Ipv6Addr>>,
|
||||
) {
|
||||
(
|
||||
self.ipv4
|
||||
.iter()
|
||||
.map(|(k, v)| (k.as_str(), v.address))
|
||||
.collect(),
|
||||
self.ipv6
|
||||
.iter()
|
||||
.map(|(k, v)| (k.as_str(), v.address))
|
||||
.collect(),
|
||||
)
|
||||
}
|
||||
|
||||
fn dump(&self) {
|
||||
|
|
Loading…
Reference in a new issue