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>
pub fn from_netmask(addr: Address, netmask: Address) -> Result<Cidr>
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 PartialOrd for Cidr
impl PartialOrd for Cidr
impl Copy for Cidr
impl Eq for Cidr
impl StructuralPartialEq for Cidr
Auto Trait Implementations§
impl Freeze for Cidr
impl RefUnwindSafe for Cidr
impl Send for Cidr
impl Sync for Cidr
impl Unpin for Cidr
impl UnwindSafe for Cidr
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)