#[non_exhaustive]pub enum AddressAttribute {
Address(IpAddr),
Local(IpAddr),
Label(String),
Broadcast(Ipv4Addr),
Anycast(Ipv6Addr),
CacheInfo(CacheInfo),
Multicast(Ipv6Addr),
Flags(Vec<AddressFlag>),
Other(DefaultNla),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Address(IpAddr)
Local(IpAddr)
Label(String)
Broadcast(Ipv4Addr)
IPv4 only
Anycast(Ipv6Addr)
IPv6 only
CacheInfo(CacheInfo)
Multicast(Ipv6Addr)
IPv6 only
Flags(Vec<AddressFlag>)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for AddressAttribute
impl Clone for AddressAttribute
source§fn clone(&self) -> AddressAttribute
fn clone(&self) -> AddressAttribute
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AddressAttribute
impl Debug for AddressAttribute
source§impl Nla for AddressAttribute
impl Nla for AddressAttribute
source§impl PartialEq for AddressAttribute
impl PartialEq for AddressAttribute
source§fn eq(&self, other: &AddressAttribute) -> bool
fn eq(&self, other: &AddressAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AddressAttribute
impl StructuralEq for AddressAttribute
impl StructuralPartialEq for AddressAttribute
Auto Trait Implementations§
impl RefUnwindSafe for AddressAttribute
impl Send for AddressAttribute
impl Sync for AddressAttribute
impl Unpin for AddressAttribute
impl UnwindSafe for AddressAttribute
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more