#[non_exhaustive]pub enum AddressAttribute {
Address(IpAddr),
Local(IpAddr),
Label(String),
Broadcast(Ipv4Addr),
Anycast(Ipv6Addr),
CacheInfo(CacheInfo),
Multicast(Ipv6Addr),
Flags(AddressFlags),
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(AddressFlags)
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
impl Eq for AddressAttribute
impl StructuralPartialEq for AddressAttribute
Auto Trait Implementations§
impl Freeze for AddressAttribute
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)