Type Alias LinkLocalMulticastAddr

Source
pub type LinkLocalMulticastAddr<A> = LinkLocalAddr<MulticastAddr<A>>;
Expand description

A link-local multicast address.

Aliased Type§

struct LinkLocalMulticastAddr<A>(/* private fields */);

Implementations

Source§

impl<A> LinkLocalAddr<A>

Source

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

Constructs a new LinkLocalAddr without checking to see if addr is actually link-local.

§Safety

It is up to the caller to make sure that addr is link-local to avoid breaking the guarantees of LinkLocalAddr. See LinkLocalAddr for more details.

Source§

impl<A: LinkLocalAddress> LinkLocalAddr<A>

Source

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

Constructs a new LinkLocalAddr.

new returns None if !addr.is_link_local().

Source

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

Constructs a new LinkLocalAddr from a witness type.

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

Source§

impl<A: LinkLocalAddress + SpecifiedAddress> LinkLocalAddr<A>

Source

pub fn into_specified(self) -> SpecifiedAddr<A>

Converts this LinkLocalAddr into a SpecifiedAddr.

LinkLocalAddress::is_link_local implies SpecifiedAddress::is_specified, so all LinkLocalAddrs are guaranteed to be specified, so this conversion is infallible.

Trait Implementations§

Source§

impl<A: BroadcastAddress + LinkLocalMulticastAddress> TryFrom<BroadcastAddr<A>> for LinkLocalMulticastAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: LinkLocalBroadcastAddress + LinkLocalMulticastAddress> TryFrom<LinkLocalAddr<BroadcastAddr<A>>> for LinkLocalMulticastAddr<A>

Source§

type Error = ()

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

fn try_from( addr: LinkLocalBroadcastAddr<A>, ) -> Result<LinkLocalMulticastAddr<A>, ()>

Performs the conversion.
Source§

impl<A: LinkLocalUnicastAddress + LinkLocalMulticastAddress> TryFrom<LinkLocalAddr<UnicastAddr<A>>> for LinkLocalMulticastAddr<A>

Source§

type Error = ()

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

fn try_from( addr: LinkLocalUnicastAddr<A>, ) -> Result<LinkLocalMulticastAddr<A>, ()>

Performs the conversion.
Source§

impl<A: MappedAddress + LinkLocalMulticastAddress> TryFrom<NonMappedAddr<A>> for LinkLocalMulticastAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: SpecifiedAddress + LinkLocalMulticastAddress> TryFrom<SpecifiedAddr<A>> for LinkLocalMulticastAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: UnicastAddress + LinkLocalMulticastAddress> TryFrom<UnicastAddr<A>> for LinkLocalMulticastAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: LinkLocalAddress> AsRef<A> for LinkLocalAddr<A>

Source§

fn as_ref(&self) -> &A

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

impl<A: LinkLocalAddress + MulticastAddress> AsRef<A> for LinkLocalAddr<MulticastAddr<A>>

Source§

fn as_ref(&self) -> &A

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

impl<A: LinkLocalAddress> AsRef<LinkLocalAddr<A>> for LinkLocalAddr<A>

Source§

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

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

impl<A: BroadcastAddress> BroadcastAddress for LinkLocalAddr<A>

Source§

fn is_broadcast(&self) -> bool

Is this a broadcast address? Read more
Source§

impl<A: Clone> Clone for LinkLocalAddr<A>

Source§

fn clone(&self) -> LinkLocalAddr<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> Debug for LinkLocalAddr<A>

Source§

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

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

impl<A: LinkLocalAddress> Deref for LinkLocalAddr<A>

Source§

type Target = A

The resulting type after dereferencing.
Source§

fn deref(&self) -> &A

Dereferences the value.
Source§

impl<A: Display> Display for LinkLocalAddr<A>

Source§

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

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

impl<A: Hash> Hash for LinkLocalAddr<A>

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<A: IpAddress> IpAddressWitness<A> for LinkLocalAddr<A>

Source§

type IpAddrWitness = LinkLocalAddr<IpAddr>

The type-erased version of Self. Read more
Source§

impl<A: MappedAddress> MappedAddress for LinkLocalAddr<A>

Source§

fn is_non_mapped(&self) -> bool

Is this a non-mapped address?
Source§

impl<A: MulticastAddress> MulticastAddress for LinkLocalAddr<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> Ord for LinkLocalAddr<A>

Source§

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

Source§

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

Source§

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

Source§

type Scope = <A as ScopeableAddress>::Scope

The type of all non-global scopes.
Source§

fn scope(&self) -> Self::Scope

The scope of this address. Read more
Source§

impl<A: SpecifiedAddress> SpecifiedAddress for LinkLocalAddr<A>

Source§

fn is_specified(&self) -> bool

Is this a specified address? Read more
Source§

impl<A: LinkLocalAddress> TransposableWitness<A> for LinkLocalAddr<A>

Source§

type Map<T> = LinkLocalAddr<T>

Maps the type wrapped by this witness.
Source§

impl<A: BroadcastAddress + LinkLocalAddress> TryFrom<BroadcastAddr<A>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: LinkLocalBroadcastAddress + LinkLocalAddress> TryFrom<LinkLocalAddr<BroadcastAddr<A>>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: LinkLocalMulticastAddress + LinkLocalAddress> TryFrom<LinkLocalAddr<MulticastAddr<A>>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: LinkLocalUnicastAddress + LinkLocalAddress> TryFrom<LinkLocalAddr<UnicastAddr<A>>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: MulticastAddress + LinkLocalAddress> TryFrom<MulticastAddr<A>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: MappedAddress + LinkLocalAddress> TryFrom<NonMappedAddr<A>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: SpecifiedAddress + LinkLocalAddress> TryFrom<SpecifiedAddr<A>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: UnicastAddress + LinkLocalAddress> TryFrom<UnicastAddr<A>> for LinkLocalAddr<A>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<A: UnicastAddress> UnicastAddress for LinkLocalAddr<A>

Source§

fn is_unicast(&self) -> bool

Is this a unicast address? Read more
Source§

impl<A: LinkLocalAddress> Witness<A> for LinkLocalAddr<A>

Source§

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

Constructs a new witness type. Read more
Source§

unsafe fn new_unchecked(addr: A) -> LinkLocalAddr<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: 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§

fn transpose<T>(self) -> A::Map<Self::Map<T>>
where Self: TransposableWitness<A>, A: TransposableWitness<T>, Self::Map<T>: Witness<T>, A::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: LinkLocalAddress + MulticastAddress> Witness<A> for LinkLocalAddr<MulticastAddr<A>>

Source§

fn new(addr: A) -> Option<LinkLocalAddr<MulticastAddr<A>>>

Constructs a new witness type. Read more
Source§

unsafe fn new_unchecked(addr: A) -> LinkLocalAddr<MulticastAddr<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: 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§

fn transpose<T>(self) -> A::Map<Self::Map<T>>
where Self: TransposableWitness<A>, A: TransposableWitness<T>, Self::Map<T>: Witness<T>, A::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> Copy for LinkLocalAddr<A>

Source§

impl<A: Eq> Eq for LinkLocalAddr<A>

Source§

impl<A> StructuralPartialEq for LinkLocalAddr<A>