Enum cidr::IpCidr [] [src]

pub enum IpCidr {
    V4(Ipv4Cidr),
    V6(Ipv6Cidr),
}

Cidr type representing either an IPv4 or an IPv6 network

Variants

IPv4 network

IPv6 network

Methods

impl IpCidr
[src]

Whether representing an IPv4 network

Whether representing an IPv6 network

Trait Implementations

impl Cidr for IpCidr
[src]

Type for the underlying address (IpAddr, Ipv4Addr or Ipv6Addr). Read more

Corresponding Inet type (representing an address + a network containing it) Read more

Create new network from address and prefix length. If the network length exceeds the address length or the address is not the first address in the network ("host part not zero") an error is returned. Read more

Create a network containing a single address (network length = address length).

first address in the network as plain address

first address in the network

last address in the network as plain address

last address in the network

length in bits of the shared prefix of the contained addresses

IP family of the contained address (Ipv4 or Ipv6).

network mask: an pseudo address which has the first network length bits set to 1 and the remaining to 0. Read more

check whether an address is contained in the network

Iterate over all addresses in the range. With IPv6 addresses this can produce really long iterations (up to 2128 addresses). Read more

impl Display for IpCidr
[src]

Formats the value using the given formatter. Read more

impl FromStr for IpCidr
[src]

The associated error which can be returned from parsing.

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

impl From<Ipv4Cidr> for IpCidr
[src]

Performs the conversion.

impl From<Ipv6Cidr> for IpCidr
[src]

Performs the conversion.

impl Clone for IpCidr
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IpCidr
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for IpCidr
[src]

impl PartialOrd for IpCidr
[src]

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for IpCidr
[src]

This method returns an Ordering between self and other. Read more

impl Hash for IpCidr
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for IpCidr
[src]

Formats the value using the given formatter.