pub enum EthtoolFeatureAttr {
Header(Vec<EthtoolHeader>),
Hw(Vec<EthtoolFeatureBit>),
Wanted(Vec<EthtoolFeatureBit>),
Active(Vec<EthtoolFeatureBit>),
NoChange(Vec<EthtoolFeatureBit>),
Other(DefaultNla),
}Variants§
Header(Vec<EthtoolHeader>)
Hw(Vec<EthtoolFeatureBit>)
Wanted(Vec<EthtoolFeatureBit>)
Active(Vec<EthtoolFeatureBit>)
NoChange(Vec<EthtoolFeatureBit>)
Other(DefaultNla)
Trait Implementations§
Source§impl Clone for EthtoolFeatureAttr
impl Clone for EthtoolFeatureAttr
Source§fn clone(&self) -> EthtoolFeatureAttr
fn clone(&self) -> EthtoolFeatureAttr
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 EthtoolFeatureAttr
impl Debug for EthtoolFeatureAttr
Source§impl Nla for EthtoolFeatureAttr
impl Nla for EthtoolFeatureAttr
Source§impl PartialEq for EthtoolFeatureAttr
impl PartialEq for EthtoolFeatureAttr
impl Eq for EthtoolFeatureAttr
impl StructuralPartialEq for EthtoolFeatureAttr
Auto Trait Implementations§
impl Freeze for EthtoolFeatureAttr
impl RefUnwindSafe for EthtoolFeatureAttr
impl Send for EthtoolFeatureAttr
impl Sync for EthtoolFeatureAttr
impl Unpin for EthtoolFeatureAttr
impl UnsafeUnpin for EthtoolFeatureAttr
impl UnwindSafe for EthtoolFeatureAttr
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