pub enum Nla {
Unspec(Vec<u8>),
Kind(String),
Options(Vec<TcOpt>),
Stats(Stats),
XStats(Vec<u8>),
Rate(Vec<u8>),
Fcnt(Vec<u8>),
Stats2(Vec<Stats2>),
Stab(Vec<u8>),
Chain(Vec<u8>),
HwOffload(u8),
Other(DefaultNla),
}
Variants
Unspec(Vec<u8>)
Unspecified
Kind(String)
Name of queueing discipline
Options(Vec<TcOpt>)
Options follow
Stats(Stats)
Statistics
XStats(Vec<u8>)
Module-specific statistics
Rate(Vec<u8>)
Rate limit
Fcnt(Vec<u8>)
Stats2(Vec<Stats2>)
Stab(Vec<u8>)
Chain(Vec<u8>)
HwOffload(u8)
Other(DefaultNla)
Trait Implementations
impl Eq for Nla
impl StructuralEq for Nla
impl StructuralPartialEq for Nla
Auto Trait Implementations
impl RefUnwindSafe for Nla
impl Send for Nla
impl Sync for Nla
impl Unpin for Nla
impl UnwindSafe for Nla
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more