#[non_exhaustive]pub enum TcQdiscFqCodelOption {
Target(u32),
Limit(u32),
Interval(u32),
Ecn(u32),
Flows(u32),
Quantum(u32),
CeThreshold(u32),
DropBatchSize(u32),
MemoryLimit(u32),
CeThresholdSelector(u8),
CeThresholdMask(u8),
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.
Target(u32)
Limit(u32)
Interval(u32)
Ecn(u32)
Flows(u32)
Quantum(u32)
CeThreshold(u32)
DropBatchSize(u32)
MemoryLimit(u32)
CeThresholdSelector(u8)
CeThresholdMask(u8)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for TcQdiscFqCodelOption
impl Clone for TcQdiscFqCodelOption
source§fn clone(&self) -> TcQdiscFqCodelOption
fn clone(&self) -> TcQdiscFqCodelOption
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 TcQdiscFqCodelOption
impl Debug for TcQdiscFqCodelOption
source§impl Nla for TcQdiscFqCodelOption
impl Nla for TcQdiscFqCodelOption
source§impl PartialEq for TcQdiscFqCodelOption
impl PartialEq for TcQdiscFqCodelOption
source§fn eq(&self, other: &TcQdiscFqCodelOption) -> bool
fn eq(&self, other: &TcQdiscFqCodelOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TcQdiscFqCodelOption
impl StructuralEq for TcQdiscFqCodelOption
impl StructuralPartialEq for TcQdiscFqCodelOption
Auto Trait Implementations§
impl RefUnwindSafe for TcQdiscFqCodelOption
impl Send for TcQdiscFqCodelOption
impl Sync for TcQdiscFqCodelOption
impl Unpin for TcQdiscFqCodelOption
impl UnwindSafe for TcQdiscFqCodelOption
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