Struct ipnetwork::Ipv4Network [−][src]
pub struct Ipv4Network { /* fields omitted */ }
Expand description
Represents a network range where the IP addresses are of v4
Implementations
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 with_netmask(
netaddr: Ipv4Addr,
netmask: Ipv4Addr
) -> Result<Ipv4Network, IpNetworkError>
pub fn with_netmask(
netaddr: Ipv4Addr,
netmask: Ipv4Addr
) -> Result<Ipv4Network, IpNetworkError>
Constructs a new Ipv4Network
from a network address and a network mask.
If the netmask is not valid this will return an IpNetworkError::InvalidPrefix
.
pub fn iter(self) -> Ipv4NetworkIteratorⓘNotable traits for Ipv4NetworkIteratorimpl Iterator for Ipv4NetworkIterator type Item = Ipv4Addr;
pub fn iter(self) -> Ipv4NetworkIteratorⓘNotable traits for Ipv4NetworkIteratorimpl Iterator for Ipv4NetworkIterator type Item = Ipv4Addr;
impl Iterator for Ipv4NetworkIterator type Item = Ipv4Addr;
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.
Checks if the given Ipv4Network
is a subnet of the other.
Checks if the given Ipv4Network
is a supernet of the other.
Checks if the given Ipv4Network
is partly contained in other.
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));
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));
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));
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)));
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);
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
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
Performs the conversion.
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 IntoIter = Ipv4NetworkIterator
type IntoIter = Ipv4NetworkIterator
Which kind of iterator are we turning this into?
fn into_iter(self) -> Ipv4NetworkIteratorⓘNotable traits for Ipv4NetworkIteratorimpl Iterator for Ipv4NetworkIterator type Item = Ipv4Addr;
fn into_iter(self) -> Ipv4NetworkIteratorⓘNotable traits for Ipv4NetworkIteratorimpl Iterator for Ipv4NetworkIterator type Item = Ipv4Addr;
impl Iterator for Ipv4NetworkIterator type Item = Ipv4Addr;
Creates an iterator from a value. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
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
Mutably borrows from an owned value. Read more