#[non_exhaustive]pub enum Inet6 {
Flags(u32),
CacheInfo(Vec<u8>),
DevConf(Vec<u8>),
Unspec(Vec<u8>),
Stats(Vec<u8>),
IcmpStats(Vec<u8>),
Token([u8; 16]),
AddrGenMode(u8),
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.
Flags(u32)
CacheInfo(Vec<u8>)
DevConf(Vec<u8>)
Unspec(Vec<u8>)
Stats(Vec<u8>)
IcmpStats(Vec<u8>)
Token([u8; 16])
AddrGenMode(u8)
Other(DefaultNla)
Trait Implementations§
source§impl PartialEq<Inet6> for Inet6
impl PartialEq<Inet6> for Inet6
impl Eq for Inet6
impl StructuralEq for Inet6
impl StructuralPartialEq for Inet6
Auto Trait Implementations§
impl RefUnwindSafe for Inet6
impl Send for Inet6
impl Sync for Inet6
impl Unpin for Inet6
impl UnwindSafe for Inet6
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