Struct ipnetwork::Ipv4Network [−][src]
Represents a network range where the IP addresses are of v4
Implementations
impl Ipv4Network
[src]
pub fn new(addr: Ipv4Addr, prefix: u8) -> Result<Ipv4Network, IpNetworkError>
[src]
Constructs a new Ipv4Network
from any Ipv4Addr
and a prefix denoting the network size.
If the prefix is larger than 32 this will return an IpNetworkError::InvalidPrefix
.
pub fn iter(&self) -> Ipv4NetworkIterator
[src]
Returns an iterator over Ipv4Network
. Each call to next
will return the next
Ipv4Addr
in the given network. None
will be returned when there are no more
addresses.
pub fn ip(&self) -> Ipv4Addr
[src]
pub fn prefix(&self) -> u8
[src]
pub fn is_subnet_of(self, other: Ipv4Network) -> bool
[src]
Checks if the given Ipv4Network
is a subnet of the other.
pub fn is_supernet_of(self, other: Ipv4Network) -> bool
[src]
Checks if the given Ipv4Network
is a supernet of the other.
pub fn overlaps(self, other: Ipv4Network) -> bool
[src]
Checks if the given Ipv4Network
is partly contained in other.
pub fn mask(&self) -> Ipv4Addr
[src]
Returns the mask for this Ipv4Network
.
That means the prefix
most significant bits will be 1 and the rest 0
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let net: Ipv4Network = "127.0.0.0".parse().unwrap(); assert_eq!(net.mask(), Ipv4Addr::new(255, 255, 255, 255)); let net: Ipv4Network = "127.0.0.0/16".parse().unwrap(); assert_eq!(net.mask(), Ipv4Addr::new(255, 255, 0, 0));
pub fn network(&self) -> Ipv4Addr
[src]
Returns the address of the network denoted by this Ipv4Network
.
This means the lowest possible IPv4 address inside of the network.
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let net: Ipv4Network = "10.1.9.32/16".parse().unwrap(); assert_eq!(net.network(), Ipv4Addr::new(10, 1, 0, 0));
pub fn broadcast(&self) -> Ipv4Addr
[src]
Returns the broadcasting address of this Ipv4Network
.
This means the highest possible IPv4 address inside of the network.
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let net: Ipv4Network = "10.9.0.32/16".parse().unwrap(); assert_eq!(net.broadcast(), Ipv4Addr::new(10, 9, 255, 255));
pub fn contains(&self, ip: Ipv4Addr) -> bool
[src]
Checks if a given Ipv4Addr
is in this Ipv4Network
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let net: Ipv4Network = "127.0.0.0/24".parse().unwrap(); assert!(net.contains(Ipv4Addr::new(127, 0, 0, 70))); assert!(!net.contains(Ipv4Addr::new(127, 0, 1, 70)));
pub fn size(&self) -> u32
[src]
Returns number of possible host addresses in this Ipv4Network
.
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let net: Ipv4Network = "10.1.0.0/16".parse().unwrap(); assert_eq!(net.size(), 65536); let tinynet: Ipv4Network = "0.0.0.0/32".parse().unwrap(); assert_eq!(tinynet.size(), 1);
pub fn nth(&self, n: u32) -> Option<Ipv4Addr>
[src]
Returns the n
:th address within this network.
The adresses are indexed from 0 and n
must be smaller than the size of the network.
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let net: Ipv4Network = "192.168.0.0/24".parse().unwrap(); assert_eq!(net.nth(0).unwrap(), Ipv4Addr::new(192, 168, 0, 0)); assert_eq!(net.nth(15).unwrap(), Ipv4Addr::new(192, 168, 0, 15)); assert!(net.nth(256).is_none()); let net2: Ipv4Network = "10.0.0.0/16".parse().unwrap(); assert_eq!(net2.nth(256).unwrap(), Ipv4Addr::new(10, 0, 1, 0));
Trait Implementations
impl Clone for Ipv4Network
[src]
fn clone(&self) -> Ipv4Network
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Ipv4Network
[src]
impl Debug for Ipv4Network
[src]
impl<'de> Deserialize<'de> for Ipv4Network
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl Display for Ipv4Network
[src]
impl Eq for Ipv4Network
[src]
impl From<Ipv4Addr> for Ipv4Network
[src]
fn from(a: Ipv4Addr) -> Ipv4Network
[src]
impl From<Ipv4Network> for IpNetwork
[src]
fn from(v4: Ipv4Network) -> IpNetwork
[src]
impl FromStr for Ipv4Network
[src]
Creates an Ipv4Network
from parsing a string in CIDR notation.
Examples
use std::net::Ipv4Addr; use ipnetwork::Ipv4Network; let new = Ipv4Network::new(Ipv4Addr::new(10, 1, 9, 32), 16).unwrap(); let from_cidr: Ipv4Network = "10.1.9.32/16".parse().unwrap(); assert_eq!(new.ip(), from_cidr.ip()); assert_eq!(new.prefix(), from_cidr.prefix());
type Err = IpNetworkError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Ipv4Network, IpNetworkError>
[src]
impl Hash for Ipv4Network
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for Ipv4Network
[src]
fn cmp(&self, other: &Ipv4Network) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<Ipv4Network> for Ipv4Network
[src]
fn eq(&self, other: &Ipv4Network) -> bool
[src]
fn ne(&self, other: &Ipv4Network) -> bool
[src]
impl PartialOrd<Ipv4Network> for Ipv4Network
[src]
fn partial_cmp(&self, other: &Ipv4Network) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for Ipv4Network
[src]
impl StructuralEq for Ipv4Network
[src]
impl StructuralPartialEq for Ipv4Network
[src]
Auto Trait Implementations
impl RefUnwindSafe for Ipv4Network
impl Send for Ipv4Network
impl Sync for Ipv4Network
impl Unpin for Ipv4Network
impl UnwindSafe for Ipv4Network
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,