1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use Described;
use crateElasticMeta;
// /// Validated ip type
// #[derive(SerializeDisplay, DeserializeFromStr, Described, PartialEq, Eq, Debug, Clone)]
// #[metadata_type(ElasticMeta)]
// #[metadata(mapping="ip")]
// pub struct IP(std::net::IpAddr);
// impl std::fmt::Display for IP {
// fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
// f.write_str(&self.0)
// }
// }
// impl FromStr for IP {
// type Err;
// fn from_str(s: &str) -> Result<Self, Self::Err> {
// todo!()
// }
// }