It's not obvious that CIDRs are ordered in any particular meaningful way.
@@ -136,7 +136,7 @@ impl fmt::Display for Address {
/// A specification of a CIDR block, containing an address and a variable-length
/// subnet masking prefix length.
-#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Cidr {
Ipv4(Ipv4Cidr),
#[doc(hidden)]
@@ -80,7 +80,7 @@ impl fmt::Display for Address {
/// A specification of an IPv4 CIDR block, containing an address and a variable-length
-#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Default)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct Cidr {
address: Address,
prefix_len: u8,