Enum cidr::IpInet [] [src]

pub enum IpInet {
    V4(Ipv4Inet),
    V6(Ipv6Inet),
}

Inet type representing either an IPv4 or an IPv6 host within a network

Variants

IPv4 host within network

IPv6 host within network

Methods

impl IpInet
[src]

[src]

Whether representing an IPv4 network

[src]

Whether representing an IPv6 network

Trait Implementations

impl Inet for IpInet
[src]

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

Corresponding Cidr type (representing only the network)

[src]

Create new host within a network from address and prefix length. If the network length exceeds the address length an error is returned. Read more

[src]

Create a network containing a single address as host and the network (network length = address length). Read more

[src]

increments host part (without changing the network part); returns true on wrap around Read more

[src]

network (i.e. drops the host information)

[src]

the host

[src]

first address in the network as plain address

[src]

first address in the network

[src]

last address in the network as plain address

[src]

last address in the network

[src]

length in bits of the shared prefix of the contained addresses

[src]

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

[src]

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

[src]

check whether an address is contained in the network

impl Display for IpInet
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for IpInet
[src]

The associated error which can be returned from parsing.

[src]

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

impl From<Ipv4Inet> for IpInet
[src]

[src]

Performs the conversion.

impl From<Ipv6Inet> for IpInet
[src]

[src]

Performs the conversion.

impl Serialize for IpInet
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for IpInet
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for IpInet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for IpInet
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for IpInet
[src]

impl PartialOrd for IpInet
[src]

[src]

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

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

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

[src]

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

[src]

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

impl Ord for IpInet
[src]

[src]

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

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for IpInet
[src]

[src]

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

1.3.0
[src]

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

impl Debug for IpInet
[src]

[src]

Formats the value using the given formatter.