Struct netaddr2::Netv6Addr[][src]

pub struct Netv6Addr { /* fields omitted */ }
Expand description

A structure representing an IPv6 network.

Internally, this structure includes two values; an Ipv6Addr representing the network address (addr), and another representing the netmask (mask).

Implementations

Create a new Netv6Addr from the given addr and mask.

Masks the given addr value with the given mask before the structure containing both is returned.

Examples

let network = Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0x42);
let netmask = Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0);
let netaddr = Netv6Addr::new(network, netmask);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

Parse a Netv6Addr from a string

Often used implicitly, this implementation allows for a few formats to be given:

  • (Standard) CIDR format: 2001:db8:dead:beef::1/64
  • Extended format: 2001:db8:dead:beef::1 ffff:ffff:ffff:ffff::
  • Extended format (with a / delimiter): 2001:db8:dead:beef::1/ffff:ffff:ffff:ffff::

Examples

let parsed: Netv6Addr = "2001:db8:dead:beef::1/32".parse().unwrap();
let addr: std::net::Ipv6Addr = "2001:db8::0".parse().unwrap();
let mask: std::net::Ipv6Addr = "ffff:ffff::0".parse().unwrap();
assert_eq!(parsed, Netv6Addr::new(addr, mask))
let parsed: Netv6Addr = "2001:db8:dead:beef::1 ffff:ffff::".parse().unwrap();
let addr: std::net::Ipv6Addr = "2001:db8::0".parse().unwrap();
let mask: std::net::Ipv6Addr = "ffff:ffff::0".parse().unwrap();
assert_eq!(parsed, Netv6Addr::new(addr, mask))
let parsed: Netv6Addr = "2001:db8:dead:beef::1/ffff:ffff::".parse().unwrap();
let addr: std::net::Ipv6Addr = "2001:db8::0".parse().unwrap();
let mask: std::net::Ipv6Addr = "ffff:ffff::0".parse().unwrap();
assert_eq!(parsed, Netv6Addr::new(addr, mask))

The associated error which can be returned from parsing.

Feeds this value into the given Hasher. Read more

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

The type of the result of the merge

Perform the merging operation

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

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. 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

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

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.