Enum netlink_packet_route::link::LinkAttribute
source · #[non_exhaustive]pub enum LinkAttribute {
Show 55 variants
VfInfoList(Vec<LinkVfInfo>),
VfPorts(Vec<LinkVfPort>),
PortSelf(LinkVfPort),
PhysPortId(LinkPhysId),
PhysSwitchId(LinkPhysId),
Xdp(Vec<LinkXdp>),
Event(LinkEvent),
NewNetnsId(i32),
IfNetnsId(i32),
CarrierUpCount(u32),
CarrierDownCount(u32),
NewIfIndex(i32),
LinkInfo(Vec<LinkInfo>),
Wireless(LinkWirelessEvent),
ProtoInfoBridge(Vec<LinkProtoInfoBridge>),
ProtoInfoInet6(Vec<LinkProtoInfoInet6>),
ProtoInfoUnknown(DefaultNla),
PropList(Vec<Prop>),
ProtoDownReason(Vec<LinkProtocolDownReason>),
Address(Vec<u8>),
Broadcast(Vec<u8>),
PermAddress(Vec<u8>),
IfName(String),
Qdisc(String),
IfAlias(String),
PhysPortName(String),
Mode(u8),
Carrier(u8),
ProtoDown(u8),
Mtu(u32),
Link(u32),
Controller(u32),
TxQueueLen(u32),
NetNsPid(u32),
NumVf(u32),
Group(u32),
NetNsFd(RawFd),
ExtMask(Vec<LinkExtentMask>),
Promiscuity(u32),
NumTxQueues(u32),
NumRxQueues(u32),
CarrierChanges(u32),
GsoMaxSegs(u32),
GsoMaxSize(u32),
MinMtu(u32),
MaxMtu(u32),
NetnsId(i32),
OperState(State),
Stats(Stats),
Stats64(Stats64),
Map(Map),
AfSpecUnspec(Vec<AfSpecUnspec>),
AfSpecBridge(Vec<AfSpecBridge>),
AfSpecUnknown(Vec<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.
VfInfoList(Vec<LinkVfInfo>)
VfPorts(Vec<LinkVfPort>)
PortSelf(LinkVfPort)
PhysPortId(LinkPhysId)
PhysSwitchId(LinkPhysId)
Xdp(Vec<LinkXdp>)
Event(LinkEvent)
NewNetnsId(i32)
IfNetnsId(i32)
CarrierUpCount(u32)
CarrierDownCount(u32)
NewIfIndex(i32)
LinkInfo(Vec<LinkInfo>)
Wireless(LinkWirelessEvent)
ProtoInfoBridge(Vec<LinkProtoInfoBridge>)
ProtoInfoInet6(Vec<LinkProtoInfoInet6>)
ProtoInfoUnknown(DefaultNla)
PropList(Vec<Prop>)
ProtoDownReason(Vec<LinkProtocolDownReason>)
Address(Vec<u8>)
Broadcast(Vec<u8>)
PermAddress(Vec<u8>)
Permanent hardware address of the device. The provides the same information as the ethtool ioctl interface.
IfName(String)
Qdisc(String)
IfAlias(String)
PhysPortName(String)
Mode(u8)
Carrier(u8)
ProtoDown(u8)
Mtu(u32)
Link(u32)
Controller(u32)
TxQueueLen(u32)
NetNsPid(u32)
NumVf(u32)
Group(u32)
NetNsFd(RawFd)
ExtMask(Vec<LinkExtentMask>)
Promiscuity(u32)
NumTxQueues(u32)
NumRxQueues(u32)
CarrierChanges(u32)
GsoMaxSegs(u32)
GsoMaxSize(u32)
MinMtu(u32)
The minimum MTU for the device.
MaxMtu(u32)
The maximum MTU for the device.
NetnsId(i32)
OperState(State)
Stats(Stats)
Stats64(Stats64)
Map(Map)
AfSpecUnspec(Vec<AfSpecUnspec>)
AfSpecBridge(Vec<AfSpecBridge>)
AfSpecUnknown(Vec<u8>)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for LinkAttribute
impl Clone for LinkAttribute
source§fn clone(&self) -> LinkAttribute
fn clone(&self) -> LinkAttribute
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 LinkAttribute
impl Debug for LinkAttribute
source§impl Nla for LinkAttribute
impl Nla for LinkAttribute
source§impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<NlaBuffer<&'a T>, AddressFamily> for LinkAttribute
impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<NlaBuffer<&'a T>, AddressFamily> for LinkAttribute
source§fn parse_with_param(
buf: &NlaBuffer<&'a T>,
interface_family: AddressFamily
) -> Result<Self, DecodeError>
fn parse_with_param( buf: &NlaBuffer<&'a T>, interface_family: AddressFamily ) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for LinkAttribute
impl PartialEq for LinkAttribute
source§fn eq(&self, other: &LinkAttribute) -> bool
fn eq(&self, other: &LinkAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for LinkAttribute
impl StructuralEq for LinkAttribute
impl StructuralPartialEq for LinkAttribute
Auto Trait Implementations§
impl RefUnwindSafe for LinkAttribute
impl Send for LinkAttribute
impl Sync for LinkAttribute
impl Unpin for LinkAttribute
impl UnwindSafe for LinkAttribute
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