| 1833 | |
| 1834 | #[derive(Debug, Clone, PartialEq, Eq, Ord, PartialOrd, Hash)] |
| 1835 | pub struct PolicyAddress(pub IpNet); |
| 1836 | impl std::fmt::Display for PolicyAddress { |
| 1837 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 1838 | write!(f, "{}", &self.0.to_string()) |