Enum netlink_packet_route::link::InfoBondPort
source · #[non_exhaustive]pub enum InfoBondPort {
LinkFailureCount(u32),
MiiStatus(MiiStatus),
PermHwaddr(Vec<u8>),
Prio(i32),
QueueId(u16),
BondPortState(BondPortState),
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.
LinkFailureCount(u32)
MiiStatus(MiiStatus)
PermHwaddr(Vec<u8>)
Prio(i32)
QueueId(u16)
BondPortState(BondPortState)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for InfoBondPort
impl Clone for InfoBondPort
source§fn clone(&self) -> InfoBondPort
fn clone(&self) -> InfoBondPort
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 InfoBondPort
impl Debug for InfoBondPort
source§impl Nla for InfoBondPort
impl Nla for InfoBondPort
source§impl PartialEq for InfoBondPort
impl PartialEq for InfoBondPort
source§fn eq(&self, other: &InfoBondPort) -> bool
fn eq(&self, other: &InfoBondPort) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InfoBondPort
impl StructuralEq for InfoBondPort
impl StructuralPartialEq for InfoBondPort
Auto Trait Implementations§
impl RefUnwindSafe for InfoBondPort
impl Send for InfoBondPort
impl Sync for InfoBondPort
impl Unpin for InfoBondPort
impl UnwindSafe for InfoBondPort
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