Struct net_types::ip::Ipv6Addr

source ·
pub struct Ipv6Addr(/* private fields */);
Expand description

An IPv6 address.

§Layout

Ipv6Addr has the same layout as [u8; 16], which is the layout that most protocols use to represent an IPv6 address in their packet formats. This can be useful when parsing an IPv6 address from a packet. For example:

/// The fixed part of an IPv6 packet header.
///
/// `FixedHeader` has the same layout as the fixed part of an IPv6 packet
/// header.
#[repr(C)]
pub struct FixedHeader {
    version_tc_flowlabel: [u8; 4],
    payload_len: [u8; 2],
    next_hdr: u8,
    hop_limit: u8,
    src_ip: Ipv6Addr,
    dst_ip: Ipv6Addr,
}

§Display

The Display impl for Ipv6Addr formats according to RFC 5952.

Where RFC 5952 leaves decisions up to the implementation, Ipv6Addr matches the behavior of std::net::Ipv6Addr - all IPv6 addresses are formatted the same by Ipv6Addr as by <std::net::Ipv6Addr as Display>::fmt.

Implementations§

source§

impl Ipv6Addr

source

pub const fn new(segments: [u16; 8]) -> Ipv6Addr

Creates a new IPv6 address from 16-bit segments.

source

pub const fn from_bytes(bytes: [u8; 16]) -> Ipv6Addr

Creates a new IPv6 address from bytes.

source

pub const fn ipv6_bytes(&self) -> [u8; 16]

Gets the bytes of the IPv6 address.

source

pub fn segments(&self) -> [u16; 8]

Gets the 16-bit segments of the IPv6 address.

source

pub const fn to_solicited_node_address(&self) -> MulticastAddr<Ipv6Addr>

Converts this Ipv6Addr to the IPv6 Solicited-Node Address, used in Neighbor Discovery, defined in RFC 4291 Section 2.7.1.

source

pub fn is_valid_unicast(&self) -> bool

Is this a valid unicast address?

A valid unicast address is any unicast address that can be bound to an interface (not the unspecified or loopback addresses). addr.is_valid_unicast() is equivalent to !(addr.is_loopback() || !addr.is_specified() || addr.is_multicast()).

source

pub fn is_site_local(&self) -> bool

Is this address in the (deprecated) site-local unicast subnet?

is_site_local returns true if self is in the (deprecated) Ipv6::SITE_LOCAL_UNICAST_SUBNET. See that constant’s documentation for more details on deprecation and how the subnet should be used in light of deprecation.

Is this a unicast link-local address?

addr.is_unicast_link_local() is equivalent to addr.is_unicast_in_subnet(&Ipv6::LINK_LOCAL_UNICAST_SUBNET).

source

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

Tries to extract the IPv4 address from an IPv4-compatible IPv6 address.

IPv4-compatible IPv6 addresses were defined to assist in the IPv6 transition, and are now specified in RFC 4291 Section 2.5.5.1. The lowest-order 32 bits carry an IPv4 address, while the highest-order 96 bits are all set to 0 as in this diagram from the RFC:

|                80 bits               | 16 |      32 bits        |
+--------------------------------------+--------------------------+
|0000..............................0000|0000|    IPv4 address     |
+--------------------------------------+----+---------------------+

to_ipv4_compatible checks to see if self is an IPv4-compatible IPv6 address. If it is, the IPv4 address is extracted and returned.

Per RFC 4291:

The ‘IPv4-Compatible IPv6 address’ is now deprecated because the current IPv6 transition mechanisms no longer use these addresses. New or updated implementations are not required to support this address type.

The more modern embedding format is IPv4-mapped IPv6 addressing - see to_ipv4_mapped.

source

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

Tries to extract the IPv4 address from an IPv4-mapped IPv6 address.

IPv4-mapped IPv6 addresses are used to represent the addresses of IPv4 nodes as IPv6 addresses, and are defined in RFC 4291 Section 2.5.5.2. The lowest-order 32 bits carry an IPv4 address, the middle order 16 bits carry the literal 0xFFFF, and the highest order 80 bits are set to 0 as in this diagram from the RFC:

|                80 bits               | 16 |      32 bits        |
+--------------------------------------+--------------------------+
|0000..............................0000|FFFF|    IPv4 address     |
+--------------------------------------+----+---------------------+

to_ipv4_mapped checks to see if self is an IPv4-mapped IPv6 address. If it is, the IPv4 address is extracted and returned.

Trait Implementations§

source§

impl AsRef<Ipv6Addr> for Ipv6SourceAddr

source§

fn as_ref(&self) -> &Ipv6Addr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Ipv6Addr> for UnicastOrMulticastIpv6Addr

source§

fn as_ref(&self) -> &Ipv6Addr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Ipv6Addr

source§

fn clone(&self) -> Ipv6Addr

Returns a copy 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 Ipv6Addr

source§

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

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

impl Default for Ipv6Addr

source§

fn default() -> Ipv6Addr

Returns the “default value” for a type. Read more
source§

impl Display for Ipv6Addr

source§

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

Formats an IPv6 address according to RFC 5952.

Where RFC 5952 leaves decisions up to the implementation, this function matches the behavior of std::net::Ipv6Addr - all IPv6 addresses are formatted the same by this function as by <std::net::Ipv6Addr as Display>::fmt.

source§

impl From<&Ipv6SourceAddr> for Ipv6Addr

source§

fn from(addr: &Ipv6SourceAddr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<&UnicastOrMulticastIpv6Addr> for Ipv6Addr

source§

fn from(addr: &UnicastOrMulticastIpv6Addr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<[u8; 16]> for Ipv6Addr

source§

fn from(bytes: [u8; 16]) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<Ipv4Addr> for Ipv6Addr

Ipv4Addr is convertible into Ipv6Addr through Ipv4Addr::to_ipv6_mapped.

source§

fn from(addr: Ipv4Addr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<Ipv6Addr> for Ipv6Addr

source§

fn from(addr: Ipv6Addr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<Ipv6Addr> for Ipv6Addr

source§

fn from(addr: Ipv6Addr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<Ipv6SourceAddr> for Ipv6Addr

source§

fn from(addr: Ipv6SourceAddr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl<A: Into<Ipv6Addr> + LinkLocalAddress + Copy> From<LinkLocalAddr<A>> for Ipv6Addr

source§

fn from(addr: LinkLocalAddr<A>) -> Ipv6Addr

Converts to this type from the input type.
source§

impl<A: Into<Ipv6Addr> + MulticastAddress + Copy> From<MulticastAddr<A>> for Ipv6Addr

source§

fn from(addr: MulticastAddr<A>) -> Ipv6Addr

Converts to this type from the input type.
source§

impl<A: Into<Ipv6Addr> + MappedAddress + Copy> From<NonMappedAddr<A>> for Ipv6Addr

source§

fn from(addr: NonMappedAddr<A>) -> Ipv6Addr

Converts to this type from the input type.
source§

impl<A: Into<Ipv6Addr> + SpecifiedAddress + Copy> From<SpecifiedAddr<A>> for Ipv6Addr

source§

fn from(addr: SpecifiedAddr<A>) -> Ipv6Addr

Converts to this type from the input type.
source§

impl<A: Into<Ipv6Addr> + UnicastAddress + Copy> From<UnicastAddr<A>> for Ipv6Addr

source§

fn from(addr: UnicastAddr<A>) -> Ipv6Addr

Converts to this type from the input type.
source§

impl From<UnicastOrMulticastIpv6Addr> for Ipv6Addr

source§

fn from(addr: UnicastOrMulticastIpv6Addr) -> Ipv6Addr

Converts to this type from the input type.
source§

impl FromBytes for Ipv6Addr
where [u8; 16]: FromBytes,

§

fn ref_from(bytes: &[u8]) -> Option<&Self>
where Self: Sized + NoCell,

Interprets the given bytes as a &Self without copying. Read more
§

fn ref_from_prefix(bytes: &[u8]) -> Option<&Self>
where Self: Sized + NoCell,

Interprets the prefix of the given bytes as a &Self without copying. Read more
§

fn ref_from_suffix(bytes: &[u8]) -> Option<&Self>
where Self: Sized + NoCell,

Interprets the suffix of the given bytes as a &Self without copying. Read more
§

fn mut_from(bytes: &mut [u8]) -> Option<&mut Self>
where Self: Sized + IntoBytes + NoCell,

Interprets the given bytes as a &mut Self without copying. Read more
§

fn mut_from_prefix(bytes: &mut [u8]) -> Option<&mut Self>
where Self: Sized + IntoBytes + NoCell,

Interprets the prefix of the given bytes as a &mut Self without copying. Read more
§

fn mut_from_suffix(bytes: &mut [u8]) -> Option<&mut Self>
where Self: Sized + IntoBytes + NoCell,

Interprets the suffix of the given bytes as a &mut Self without copying. Read more
§

fn slice_from(bytes: &[u8]) -> Option<&[Self]>
where Self: Sized + NoCell,

Interprets the given bytes as a &[Self] without copying. Read more
§

fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>
where Self: Sized + NoCell,

Interprets the prefix of the given bytes as a &[Self] with length equal to count without copying. Read more
§

fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>
where Self: Sized + NoCell,

Interprets the suffix of the given bytes as a &[Self] with length equal to count without copying. Read more
§

fn mut_slice_from(bytes: &mut [u8]) -> Option<&mut [Self]>
where Self: Sized + IntoBytes + NoCell,

Interprets the given bytes as a &mut [Self] without copying. Read more
§

fn mut_slice_from_prefix( bytes: &mut [u8], count: usize ) -> Option<(&mut [Self], &mut [u8])>
where Self: Sized + IntoBytes + NoCell,

Interprets the prefix of the given bytes as a &mut [Self] with length equal to count without copying. Read more
§

fn mut_slice_from_suffix( bytes: &mut [u8], count: usize ) -> Option<(&mut [u8], &mut [Self])>
where Self: Sized + IntoBytes + NoCell,

Interprets the suffix of the given bytes as a &mut [Self] with length equal to count without copying. Read more
§

fn read_from(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from bytes. Read more
§

fn read_from_prefix(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from the prefix of bytes. Read more
§

fn read_from_suffix(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from the suffix of bytes. Read more
source§

impl FromZeros for Ipv6Addr
where [u8; 16]: FromZeros,

§

fn zero(&mut self)

Overwrites self with zeros. Read more
§

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes. Read more
source§

impl<I: Ip> GenericOverIp<I> for Ipv6Addr

§

type Type = <I as Ip>::Addr

The type of Self when its IP-generic parameter is replaced with the type NewIp.
source§

impl Hash for Ipv6Addr

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 IntoBytes for Ipv6Addr
where [u8; 16]: IntoBytes,

§

fn as_bytes(&self) -> &[u8]
where Self: NoCell,

Gets the bytes of this value. Read more
§

fn as_bytes_mut(&mut self) -> &mut [u8]
where Self: FromBytes + NoCell,

Gets the bytes of this value mutably. Read more
§

fn write_to(&self, bytes: &mut [u8]) -> Option<()>
where Self: NoCell,

Writes a copy of self to bytes. Read more
§

fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>
where Self: NoCell,

Writes a copy of self to the prefix of bytes. Read more
§

fn write_to_suffix(&self, bytes: &mut [u8]) -> Option<()>
where Self: NoCell,

Writes a copy of self to the suffix of bytes. Read more
source§

impl IpAddress for Ipv6Addr

source§

const BYTES: u8 = 16u8

The number of bytes in an address of this type. Read more
§

type Version = Ipv6

The IP version type of this address. Read more
source§

fn mask(&self, bits: u8) -> Ipv6Addr

Masks off the top bits of the address. Read more
source§

fn bytes(&self) -> &[u8]

Gets the underlying bytes of the address.
source§

fn to_ip_addr(&self) -> IpAddr

Converts a statically-typed IP address into a dynamically-typed one.
source§

fn common_prefix_len(&self, other: &Ipv6Addr) -> u8

Calculates the common prefix length between this address and other.
source§

fn is_unicast_in_subnet(&self, subnet: &Subnet<Self>) -> bool

Is this a unicast address contained in the given subnet? Read more
source§

fn is_loopback(&self) -> bool

Is this a loopback address? Read more
source§

impl LinkLocalAddress for Ipv6Addr

Is this address in the link-local subnet?

is_link_local returns true if self is in Ipv6::LINK_LOCAL_UNICAST_SUBNET, is a multicast address whose scope is link-local, or is the address Ipv6::LOOPBACK_ADDRESS (per RFC 4291 Section 2.5.3, the loopback address is considered to have link-local scope).

source§

impl Ord for Ipv6Addr

source§

fn cmp(&self, other: &Ipv6Addr) -> 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 + PartialOrd,

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

impl PartialEq for Ipv6Addr

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Ipv6Addr

source§

fn partial_cmp(&self, other: &Ipv6Addr) -> 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

This method 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

This method 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

This method 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

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

impl ScopeableAddress for Ipv6Addr

source§

fn scope(&self) -> Ipv6Scope

The scope of this address.

§

type Scope = Ipv6Scope

The type of all non-global scopes.
source§

impl TryFrom<Ipv6Addr> for Ipv6SourceAddr

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<Ipv6SourceAddr, ()>

Performs the conversion.
source§

impl TryFrom<Ipv6Addr> for LinkLocalAddr<Ipv6Addr>

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<LinkLocalAddr<Ipv6Addr>, ()>

Performs the conversion.
source§

impl TryFrom<Ipv6Addr> for MulticastAddr<Ipv6Addr>

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<MulticastAddr<Ipv6Addr>, ()>

Performs the conversion.
source§

impl TryFrom<Ipv6Addr> for NonMappedAddr<Ipv6Addr>

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<NonMappedAddr<Ipv6Addr>, ()>

Performs the conversion.
source§

impl TryFrom<Ipv6Addr> for SpecifiedAddr<Ipv6Addr>

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<SpecifiedAddr<Ipv6Addr>, ()>

Performs the conversion.
source§

impl TryFrom<Ipv6Addr> for UnicastAddr<Ipv6Addr>

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<UnicastAddr<Ipv6Addr>, ()>

Performs the conversion.
source§

impl TryFrom<Ipv6Addr> for UnicastOrMulticastIpv6Addr

§

type Error = ()

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

fn try_from(addr: Ipv6Addr) -> Result<UnicastOrMulticastIpv6Addr, ()>

Performs the conversion.
source§

impl UnicastAddress for Ipv6Addr

source§

fn is_unicast(&self) -> bool

Is this a unicast address?

addr.is_unicast() is equivalent to !addr.is_multicast() && addr.is_specified().

source§

impl Witness<Ipv6Addr> for Ipv6SourceAddr

source§

fn new(addr: Ipv6Addr) -> Option<Ipv6SourceAddr>

Constructs a new witness type. Read more
source§

unsafe fn new_unchecked(addr: Ipv6Addr) -> Ipv6SourceAddr

Constructs a new witness type without checking to see if addr actually satisfies the required property. Read more
source§

fn into_addr(self) -> Ipv6Addr

Consumes this witness and returns the contained A. Read more
source§

fn from_witness<W: Witness<A>>(addr: W) -> Option<Self>

Constructs a new witness type from an existing witness type. Read more
source§

fn get(&self) -> A
where A: Copy,

Gets a copy of the address.
source§

impl Witness<Ipv6Addr> for UnicastOrMulticastIpv6Addr

source§

fn new(addr: Ipv6Addr) -> Option<UnicastOrMulticastIpv6Addr>

Constructs a new witness type. Read more
source§

unsafe fn new_unchecked(addr: Ipv6Addr) -> UnicastOrMulticastIpv6Addr

Constructs a new witness type without checking to see if addr actually satisfies the required property. Read more
source§

fn into_addr(self) -> Ipv6Addr

Consumes this witness and returns the contained A. Read more
source§

fn from_witness<W: Witness<A>>(addr: W) -> Option<Self>

Constructs a new witness type from an existing witness type. Read more
source§

fn get(&self) -> A
where A: Copy,

Gets a copy of the address.
source§

impl Copy for Ipv6Addr

source§

impl Eq for Ipv6Addr

source§

impl StructuralPartialEq for Ipv6Addr

source§

impl Unaligned for Ipv6Addr
where [u8; 16]: Unaligned,

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> 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<A> MappedAddress for A
where A: IpAddress,

source§

fn is_non_mapped(&self) -> bool

Is this address non-mapped?

For IPv4 addresses, this always returns true because they do not have a mapped address space.

For Ipv6 addresses, this returns true if self is outside of the IPv4 mapped Ipv6 address subnet, as defined in RFC 4291 Section 2.5.5.2 (e.g. ::FFFF:0:0/96).

source§

impl<A> MulticastAddress for A
where A: IpAddress,

source§

fn is_multicast(&self) -> bool

Is this address in the multicast subnet?

is_multicast returns true if self is in A::Version::MULTICAST_SUBNET.

source§

impl<A> SpecifiedAddress for A
where A: IpAddress,

source§

fn is_specified(&self) -> bool

Is this an address other than the unspecified address?

is_specified returns true if self is not equal to A::Version::UNSPECIFIED_ADDRESS.

source§

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

§

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§

default 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>,

§

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>,

§

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.
source§

impl<A> LinkLocalMulticastAddress for A

source§

impl<A> LinkLocalUnicastAddress for A