Type Alias Ipv6DeviceAddr

Source
pub type Ipv6DeviceAddr = NonMappedAddr<UnicastAddr<Ipv6Addr>>;
Expand description

An IPv6 address that witnesses properties needed to be assigned to a device.

Like IpDeviceAddr but with stricter witnesses that are permitted for IPv6 addresses.

Aliased Type§

struct Ipv6DeviceAddr(/* private fields */);

Implementations

Source§

impl<A> NonMappedAddr<A>

Source

pub const unsafe fn new_unchecked(addr: A) -> NonMappedAddr<A>

Constructs a new NonMappedAddr without checking to see if addr is actually non_mapped.

§Safety

It is up to the caller to make sure that addr is non_mapped to avoid breaking the guarantees of NonMappedAddr. See NonMappedAddr for more details.

Source§

impl<A> NonMappedAddr<A>
where A: MappedAddress,

Source

pub fn new(addr: A) -> Option<NonMappedAddr<A>>

Constructs a new NonMappedAddr.

new returns None if !addr.is_non_mapped().

Source

pub fn from_witness<W>(addr: W) -> Option<NonMappedAddr<A>>
where W: Witness<A>,

Constructs a new NonMappedAddr from a witness type.

from_witness(witness) is equivalent to new(witness.into_addr()).

Trait Implementations

Source§

impl<A> AsRef<A> for NonMappedAddr<A>
where A: MappedAddress,

Source§

fn as_ref(&self) -> &A

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

impl<A> AsRef<A> for NonMappedAddr<UnicastAddr<A>>

Source§

fn as_ref(&self) -> &A

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

impl<A> AsRef<NonMappedAddr<A>> for NonMappedAddr<A>
where A: MappedAddress,

Source§

fn as_ref(&self) -> &NonMappedAddr<A>

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

impl<A> BroadcastAddress for NonMappedAddr<A>

Source§

fn is_broadcast(&self) -> bool

Is this a broadcast address? Read more
Source§

impl<A> Clone for NonMappedAddr<A>
where A: Clone,

Source§

fn clone(&self) -> NonMappedAddr<A>

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<A> Debug for NonMappedAddr<A>
where A: Debug,

Source§

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

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

impl<A> Deref for NonMappedAddr<A>
where A: MappedAddress,

Source§

type Target = A

The resulting type after dereferencing.
Source§

fn deref(&self) -> &A

Dereferences the value.
Source§

impl<A> Display for NonMappedAddr<A>
where A: Display,

Source§

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

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

impl<A> Hash for NonMappedAddr<A>
where A: Hash,

Source§

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

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<A> LinkLocalAddress for NonMappedAddr<A>

Is this a link-local address? Read more
Source§

impl<A> MulticastAddress for NonMappedAddr<A>

Source§

fn is_multicast(&self) -> bool

Is this a multicast address? Read more
Source§

fn is_non_multicast(&self) -> bool

Is this a non-multicast address? The inverse of is_multicast().
Source§

impl<A> Ord for NonMappedAddr<A>
where A: Ord,

Source§

fn cmp(&self, other: &NonMappedAddr<A>) -> 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<A> PartialEq for NonMappedAddr<A>
where A: PartialEq,

Source§

fn eq(&self, other: &NonMappedAddr<A>) -> 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<A> PartialOrd for NonMappedAddr<A>
where A: PartialOrd,

Source§

fn partial_cmp(&self, other: &NonMappedAddr<A>) -> 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<A> ScopeableAddress for NonMappedAddr<A>

Source§

type Scope = <A as ScopeableAddress>::Scope

The type of all non-global scopes.
Source§

fn scope(&self) -> <NonMappedAddr<A> as ScopeableAddress>::Scope

The scope of this address. Read more
Source§

impl<A> SpecifiedAddress for NonMappedAddr<A>

Source§

fn is_specified(&self) -> bool

Is this a specified address? Read more
Source§

impl<A> TransposableWitness<A> for NonMappedAddr<A>
where A: MappedAddress,

Source§

type Map<T> = NonMappedAddr<T>

Maps the type wrapped by this witness.
Source§

impl<A> TryFrom<BroadcastAddr<A>> for NonMappedAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A> TryFrom<LinkLocalAddr<A>> for NonMappedAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A> TryFrom<MulticastAddr<A>> for NonMappedAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A> TryFrom<SpecifiedAddr<A>> for NonMappedAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A> TryFrom<UnicastAddr<A>> for NonMappedAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A> UnicastAddress for NonMappedAddr<A>
where A: UnicastAddress,

Source§

fn is_unicast(&self) -> bool

Is this a unicast address? Read more
Source§

impl<A> Witness<A> for NonMappedAddr<A>
where A: MappedAddress,

Source§

fn new(addr: A) -> Option<NonMappedAddr<A>>

Constructs a new witness type. Read more
Source§

unsafe fn new_unchecked(addr: A) -> NonMappedAddr<A>

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

fn into_addr(self) -> A

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

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

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§

fn transpose<T>(self) -> <A as TransposableWitness<T>>::Map<Self::Map<T>>
where Self: TransposableWitness<A>, A: TransposableWitness<T>, Self::Map<T>: Witness<T>, <A as TransposableWitness<T>>::Map<Self::Map<T>>: Witness<Self::Map<T>>,

Transposes this witness type with another witness type layered inside of it. (e.g. UnicastAddr<SpecifiedAddr> -> SpecifiedAddr<UnicastAddr>)
Source§

impl<A> Witness<A> for NonMappedAddr<UnicastAddr<A>>

Source§

fn new(addr: A) -> Option<NonMappedAddr<UnicastAddr<A>>>

Constructs a new witness type. Read more
Source§

unsafe fn new_unchecked(addr: A) -> NonMappedAddr<UnicastAddr<A>>

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

fn into_addr(self) -> A

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

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

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§

fn transpose<T>(self) -> <A as TransposableWitness<T>>::Map<Self::Map<T>>
where Self: TransposableWitness<A>, A: TransposableWitness<T>, Self::Map<T>: Witness<T>, <A as TransposableWitness<T>>::Map<Self::Map<T>>: Witness<Self::Map<T>>,

Transposes this witness type with another witness type layered inside of it. (e.g. UnicastAddr<SpecifiedAddr> -> SpecifiedAddr<UnicastAddr>)
Source§

impl<A> Copy for NonMappedAddr<A>
where A: Copy,

Source§

impl<A> Eq for NonMappedAddr<A>
where A: Eq,

Source§

impl<A> StructuralPartialEq for NonMappedAddr<A>