Enum embassy_net::IpCidr
source · pub enum IpCidr {
Ipv4(Cidr),
Ipv6(Cidr),
}
Expand description
A specification of a CIDR block, containing an address and a variable-length subnet masking prefix length.
Variants§
Implementations§
source§impl Cidr
impl Cidr
sourcepub fn new(addr: Address, prefix_len: u8) -> Cidr
pub fn new(addr: Address, prefix_len: u8) -> Cidr
Create a CIDR block from the given address and prefix length.
Panics
This function panics if the given prefix length is invalid for the given address.
sourcepub const fn prefix_len(&self) -> u8
pub const fn prefix_len(&self) -> u8
Return the prefix length of this CIDR block.
sourcepub fn contains_addr(&self, addr: &Address) -> bool
pub fn contains_addr(&self, addr: &Address) -> bool
Query whether the subnetwork described by this CIDR block contains the given address.
sourcepub fn contains_subnet(&self, subnet: &Cidr) -> bool
pub fn contains_subnet(&self, subnet: &Cidr) -> bool
Query whether the subnetwork described by this CIDR block contains the subnetwork described by the given CIDR block.
Trait Implementations§
source§impl Ord for Cidr
impl Ord for Cidr
source§impl PartialEq<Cidr> for Cidr
impl PartialEq<Cidr> for Cidr
source§impl PartialOrd<Cidr> for Cidr
impl PartialOrd<Cidr> for Cidr
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more