Skip to main content

IpRange

Enum IpRange 

Source
pub enum IpRange {
    V4 {
        start: Ipv4Addr,
        end: Ipv4Addr,
    },
    V6 {
        start: Ipv6Addr,
        end: Ipv6Addr,
    },
}
Expand description

Inclusive IP range (start <= end) for either IPv4 or IPv6.

Keep this in your crate so you control ordering rules and serialization.

Variants§

§

V4

Fields

§start: Ipv4Addr
§

V6

Fields

§start: Ipv6Addr

Implementations§

Source§

impl IpRange

Source

pub fn new(start: IpAddr, end: IpAddr) -> Result<Self, String>

Create a validated range.

Ensures the start/end address families match and that start <= end.

§Examples

IPv4:

use std::net::{IpAddr, Ipv4Addr};
use firewall_objects::ip::range::IpRange;

let r = IpRange::new(
    IpAddr::V4(Ipv4Addr::new(192, 0, 2, 10)),
    IpAddr::V4(Ipv4Addr::new(192, 0, 2, 20)),
).unwrap();
assert!(r.contains(IpAddr::V4(Ipv4Addr::new(192, 0, 2, 15))));

IPv6:

use std::net::{IpAddr, Ipv6Addr};
use firewall_objects::ip::range::IpRange;

let r = IpRange::new(
    IpAddr::V6(Ipv6Addr::LOCALHOST),
    IpAddr::V6(Ipv6Addr::LOCALHOST),
).unwrap();
assert!(r.contains(IpAddr::V6(Ipv6Addr::LOCALHOST)));

Mismatched families fail:

use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use firewall_objects::ip::range::IpRange;

let err = IpRange::new(
    IpAddr::V4(Ipv4Addr::new(192, 0, 2, 10)),
    IpAddr::V6(Ipv6Addr::LOCALHOST),
).unwrap_err();
assert!(err.contains("families must match"));
Source

pub fn new_v4(start: Ipv4Addr, end: Ipv4Addr) -> Result<Self, String>

Create a validated IPv4 range.

Source

pub fn new_v6(start: Ipv6Addr, end: Ipv6Addr) -> Result<Self, String>

Create a validated IPv6 range.

Source

pub fn family(&self) -> IpFamily

Return the IP family of this range.

Source

pub fn as_v4(&self) -> Option<(Ipv4Addr, Ipv4Addr)>

Return the (start, end) tuple for an IPv4 range.

Source

pub fn as_v6(&self) -> Option<(Ipv6Addr, Ipv6Addr)>

Return the (start, end) tuple for an IPv6 range.

Source

pub fn start_v4(&self) -> Option<Ipv4Addr>

Return the start of the range as IPv4, if this is an IPv4 range.

Source

pub fn end_v4(&self) -> Option<Ipv4Addr>

Return the end of the range as IPv4, if this is an IPv4 range.

Source

pub fn start_v6(&self) -> Option<Ipv6Addr>

Return the start of the range as IPv6, if this is an IPv6 range.

Source

pub fn end_v6(&self) -> Option<Ipv6Addr>

Return the end of the range as IPv6, if this is an IPv6 range.

Source

pub fn contains_v4(&self, ip: Ipv4Addr) -> bool

Check whether the given IPv4 address is within the range (inclusive).

Source

pub fn contains_v6(&self, ip: Ipv6Addr) -> bool

Check whether the given IPv6 address is within the range (inclusive).

Source

pub fn parse(s: &str) -> Result<Self, String>

Parse an IP range from a string.

Supported format is start-end where both sides are valid IP addresses of the same family (IPv4 or IPv6). Whitespace around addresses is allowed.

§Examples

IPv4:

use std::net::{IpAddr, Ipv4Addr};
use firewall_objects::ip::range::IpRange;

let r = IpRange::parse("192.0.2.10-192.0.2.20").unwrap();
assert!(r.contains(IpAddr::V4(Ipv4Addr::new(192, 0, 2, 15))));

IPv6:

use std::net::{IpAddr, Ipv6Addr};
use firewall_objects::ip::range::IpRange;

let r = IpRange::parse("::1-::1").unwrap();
assert!(r.contains(IpAddr::V6(Ipv6Addr::LOCALHOST)));

Bad formats fail:

use firewall_objects::ip::range::IpRange;

assert!(IpRange::parse("192.0.2.10").is_err());
assert!(IpRange::parse("192.0.2.10-").is_err());
assert!(IpRange::parse("-192.0.2.10").is_err());
Source

pub fn start(&self) -> IpAddr

Return the start of the range.

Source

pub fn end(&self) -> IpAddr

Return the end of the range.

Source

pub fn is_v4(&self) -> bool

Returns true if this is an IPv4 range.

Source

pub fn is_v6(&self) -> bool

Returns true if this is an IPv6 range.

Source

pub fn contains(&self, ip: IpAddr) -> bool

Check whether the given IP is within the range (inclusive).

Trait Implementations§

Source§

impl Clone for IpRange

Source§

fn clone(&self) -> IpRange

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for IpRange

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for IpRange

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for IpRange

Source§

type Err = String

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for IpRange

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for IpRange

Source§

fn cmp(&self, other: &IpRange) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for IpRange

Source§

fn eq(&self, other: &IpRange) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for IpRange

Source§

fn partial_cmp(&self, other: &IpRange) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for IpRange

Source§

impl Eq for IpRange

Source§

impl StructuralPartialEq for IpRange

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.