Struct embassy_net::Ipv4Cidr
source · pub struct Ipv4Cidr { /* private fields */ }
Expand description
A specification of an IPv4 CIDR block, containing an address and a variable-length subnet masking prefix length.
Implementations§
source§impl Cidr
impl Cidr
sourcepub const fn new(address: Address, prefix_len: u8) -> Cidr
pub const fn new(address: Address, prefix_len: u8) -> Cidr
Create an IPv4 CIDR block from the given address and prefix length.
Panics
This function panics if the prefix length is larger than 32.
sourcepub fn from_netmask(addr: Address, netmask: Address) -> Result<Cidr, Error>
pub fn from_netmask(addr: Address, netmask: Address) -> Result<Cidr, Error>
Create an IPv4 CIDR block from the given address and network mask.
sourcepub const fn prefix_len(&self) -> u8
pub const fn prefix_len(&self) -> u8
Return the prefix length of this IPv4 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 IPv4 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 IPv4 CIDR block contains the subnetwork described by the given IPv4 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