pub enum EthtoolChannelAttr {
Header(Vec<EthtoolHeader>),
RxMax(u32),
TxMax(u32),
OtherMax(u32),
CombinedMax(u32),
RxCount(u32),
TxCount(u32),
OtherCount(u32),
CombinedCount(u32),
Other(DefaultNla),
}Variants§
Header(Vec<EthtoolHeader>)
RxMax(u32)
TxMax(u32)
OtherMax(u32)
CombinedMax(u32)
RxCount(u32)
TxCount(u32)
OtherCount(u32)
CombinedCount(u32)
Other(DefaultNla)
Trait Implementations§
Source§impl Clone for EthtoolChannelAttr
impl Clone for EthtoolChannelAttr
Source§fn clone(&self) -> EthtoolChannelAttr
fn clone(&self) -> EthtoolChannelAttr
Returns a duplicate 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 EthtoolChannelAttr
impl Debug for EthtoolChannelAttr
Source§impl Nla for EthtoolChannelAttr
impl Nla for EthtoolChannelAttr
Source§impl PartialEq for EthtoolChannelAttr
impl PartialEq for EthtoolChannelAttr
impl Eq for EthtoolChannelAttr
impl StructuralPartialEq for EthtoolChannelAttr
Auto Trait Implementations§
impl Freeze for EthtoolChannelAttr
impl RefUnwindSafe for EthtoolChannelAttr
impl Send for EthtoolChannelAttr
impl Sync for EthtoolChannelAttr
impl Unpin for EthtoolChannelAttr
impl UnsafeUnpin for EthtoolChannelAttr
impl UnwindSafe for EthtoolChannelAttr
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