#[non_exhaustive]pub enum TcActionAttribute {
Kind(String),
Options(Vec<TcActionOption>),
Index(u32),
Stats(Vec<TcStats2>),
Cookie(Vec<u8>),
InHwCount(u32),
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.
Kind(String)
Options(Vec<TcActionOption>)
Index(u32)
Stats(Vec<TcStats2>)
Cookie(Vec<u8>)
InHwCount(u32)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for TcActionAttribute
impl Clone for TcActionAttribute
source§fn clone(&self) -> TcActionAttribute
fn clone(&self) -> TcActionAttribute
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 TcActionAttribute
impl Debug for TcActionAttribute
source§impl Nla for TcActionAttribute
impl Nla for TcActionAttribute
source§impl PartialEq for TcActionAttribute
impl PartialEq for TcActionAttribute
source§fn eq(&self, other: &TcActionAttribute) -> bool
fn eq(&self, other: &TcActionAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TcActionAttribute
impl StructuralEq for TcActionAttribute
impl StructuralPartialEq for TcActionAttribute
Auto Trait Implementations§
impl RefUnwindSafe for TcActionAttribute
impl Send for TcActionAttribute
impl Sync for TcActionAttribute
impl Unpin for TcActionAttribute
impl UnwindSafe for TcActionAttribute
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