Enum ip_network::IpNetwork
source · pub enum IpNetwork {
V4(Ipv4Network),
V6(Ipv6Network),
}
Expand description
Holds IPv4 or IPv6 network.
Variants§
V4(Ipv4Network)
V6(Ipv6Network)
Implementations§
source§impl IpNetwork
impl IpNetwork
sourcepub fn new<I: Into<IpAddr>>(
network_address: I,
netmask: u8
) -> Result<Self, IpNetworkError>
pub fn new<I: Into<IpAddr>>( network_address: I, netmask: u8 ) -> Result<Self, IpNetworkError>
Constructs new IpNetwork
based on IpAddr
and netmask
.
Examples
use std::net::{IpAddr, Ipv4Addr};
use std::str::FromStr;
use ip_network::{IpNetwork, Ipv4Network};
let network_address = IpAddr::V4(Ipv4Addr::new(192, 168, 1, 0));
let ip_network = IpNetwork::new(network_address, 24)?;
assert_eq!(ip_network.network_address(), IpAddr::V4(Ipv4Addr::new(192, 168, 1, 0)));
assert_eq!(ip_network.netmask(), 24);
sourcepub fn new_truncate<I: Into<IpAddr>>(
network_address: I,
netmask: u8
) -> Result<Self, IpNetworkError>
pub fn new_truncate<I: Into<IpAddr>>( network_address: I, netmask: u8 ) -> Result<Self, IpNetworkError>
Constructs new IpNetwork
based on IpAddr
and netmask
with truncating host bits
from given network_address
.
Returns error if netmask is bigger than 32 for IPv4 and 128 for IPv6.
Examples
use std::net::{IpAddr, Ipv4Addr};
use ip_network::IpNetwork;
let network_address = IpAddr::V4(Ipv4Addr::new(192, 168, 1, 128));
let ip_network = IpNetwork::new_truncate(network_address, 24)?;
assert_eq!(ip_network.network_address(), IpAddr::V4(Ipv4Addr::new(192, 168, 1, 0)));
assert_eq!(ip_network.netmask(), 24);
sourcepub fn network_address(&self) -> IpAddr
pub fn network_address(&self) -> IpAddr
Returns network IP address.
Examples
use std::net::{IpAddr, Ipv4Addr};
use ip_network::IpNetwork;
let ip_network = IpNetwork::new(Ipv4Addr::new(192, 168, 1, 0), 24)?;
assert_eq!(ip_network.network_address(), IpAddr::V4(Ipv4Addr::new(192, 168, 1, 0)));
sourcepub fn netmask(&self) -> u8
pub fn netmask(&self) -> u8
Returns network mask as integer.
Examples
use std::net::{IpAddr, Ipv4Addr};
use ip_network::IpNetwork;
let ip_network = IpNetwork::new(Ipv4Addr::new(192, 168, 1, 0), 24)?;
assert_eq!(ip_network.netmask(), 24);
sourcepub fn contains<I: Into<IpAddr>>(&self, ip: I) -> bool
pub fn contains<I: Into<IpAddr>>(&self, ip: I) -> bool
Returns true
if IpNetwork
contains IpAddr
. For different network type
(for example IpNetwork is IPv6 and IpAddr is IPv4) always returns false
.
Examples
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use ip_network::IpNetwork;
let ip_network = IpNetwork::new(Ipv4Addr::new(192, 168, 1, 0), 24)?;
assert!(ip_network.contains(Ipv4Addr::new(192, 168, 1, 25)));
assert!(!ip_network.contains(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 1, 0, 0)));
sourcepub fn is_default_route(&self) -> bool
pub fn is_default_route(&self) -> bool
Returns true
if the network is default route, that contains all IP addresses.
sourcepub fn is_multicast(&self) -> bool
pub fn is_multicast(&self) -> bool
Returns true
if the network is part of multicast network range.
sourcepub fn is_documentation(&self) -> bool
pub fn is_documentation(&self) -> bool
Returns true
if this is a part of network reserved for documentation.
sourcepub fn is_loopback(&self) -> bool
pub fn is_loopback(&self) -> bool
Returns true
if this network is inside loopback address range.
sourcepub fn from_str_truncate(s: &str) -> Result<Self, IpNetworkParseError>
pub fn from_str_truncate(s: &str) -> Result<Self, IpNetworkParseError>
Converts string in format IPv4 (X.X.X.X/Y) or IPv6 (X:X::X/Y) CIDR notation to IpNetwork
.
Examples
use std::net::Ipv4Addr;
use ip_network::{IpNetwork, Ipv4Network};
let ip_network = IpNetwork::from_str_truncate("192.168.1.1/24").unwrap();
assert_eq!(ip_network, IpNetwork::V4(Ipv4Network::new(Ipv4Addr::new(192, 168, 1, 0), 24).unwrap()));
sourcepub fn collapse_addresses(addresses: &[Self]) -> Vec<Self>
pub fn collapse_addresses(addresses: &[Self]) -> Vec<Self>
Return an iterator of the collapsed IpNetworks.
Trait Implementations§
source§impl Display for IpNetwork
impl Display for IpNetwork
source§fn fmt(&self, f: &mut Formatter<'_>) -> Result
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Converts IpNetwork
to string in format X.X.X.X/Y for IPv4 and X:X::X/Y for IPv6 (CIDR notation).
Examples
use std::net::Ipv4Addr;
use ip_network::{IpNetwork, Ipv4Network};
let ip_network = IpNetwork::V4(Ipv4Network::new(Ipv4Addr::new(192, 168, 1, 0), 24)?);
assert_eq!(ip_network.to_string(), "192.168.1.0/24");
source§impl From<Ipv4Network> for IpNetwork
impl From<Ipv4Network> for IpNetwork
source§fn from(network: Ipv4Network) -> Self
fn from(network: Ipv4Network) -> Self
source§impl From<Ipv6Network> for IpNetwork
impl From<Ipv6Network> for IpNetwork
source§fn from(network: Ipv6Network) -> Self
fn from(network: Ipv6Network) -> Self
source§impl FromStr for IpNetwork
impl FromStr for IpNetwork
source§fn from_str(s: &str) -> Result<IpNetwork, IpNetworkParseError>
fn from_str(s: &str) -> Result<IpNetwork, IpNetworkParseError>
Converts string in format IPv4 (X.X.X.X/Y) or IPv6 (X:X::X/Y) CIDR notation to IpNetwork
.
Examples
use std::net::Ipv4Addr;
use std::str::FromStr;
use ip_network::{IpNetwork, Ipv4Network};
let ip_network = IpNetwork::from_str("192.168.1.0/24").unwrap();
assert_eq!(ip_network, IpNetwork::V4(Ipv4Network::new(Ipv4Addr::new(192, 168, 1, 0), 24).unwrap()));
§type Err = IpNetworkParseError
type Err = IpNetworkParseError
source§impl Ord for IpNetwork
impl Ord for IpNetwork
source§impl PartialEq<IpNetwork> for IpNetwork
impl PartialEq<IpNetwork> for IpNetwork
source§impl PartialEq<IpNetwork> for Ipv4Network
impl PartialEq<IpNetwork> for Ipv4Network
source§impl PartialEq<IpNetwork> for Ipv6Network
impl PartialEq<IpNetwork> for Ipv6Network
source§impl PartialEq<Ipv4Network> for IpNetwork
impl PartialEq<Ipv4Network> for IpNetwork
source§fn eq(&self, other: &Ipv4Network) -> bool
fn eq(&self, other: &Ipv4Network) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<Ipv6Network> for IpNetwork
impl PartialEq<Ipv6Network> for IpNetwork
source§fn eq(&self, other: &Ipv6Network) -> bool
fn eq(&self, other: &Ipv6Network) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<IpNetwork> for IpNetwork
impl PartialOrd<IpNetwork> for IpNetwork
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<IpNetwork> for Ipv4Network
impl PartialOrd<IpNetwork> for Ipv4Network
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<IpNetwork> for Ipv6Network
impl PartialOrd<IpNetwork> for Ipv6Network
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<Ipv4Network> for IpNetwork
impl PartialOrd<Ipv4Network> for IpNetwork
source§fn partial_cmp(&self, other: &Ipv4Network) -> Option<Ordering>
fn partial_cmp(&self, other: &Ipv4Network) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<Ipv6Network> for IpNetwork
impl PartialOrd<Ipv6Network> for IpNetwork
source§fn partial_cmp(&self, other: &Ipv6Network) -> Option<Ordering>
fn partial_cmp(&self, other: &Ipv6Network) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more