#[non_exhaustive]pub enum TcFilterMatchAllOption {
ClassId(TcHandle),
Action(Vec<TcAction>),
Pnct(Vec<u8>),
Flags(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.
Trait Implementations§
source§impl Clone for TcFilterMatchAllOption
impl Clone for TcFilterMatchAllOption
source§fn clone(&self) -> TcFilterMatchAllOption
fn clone(&self) -> TcFilterMatchAllOption
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 TcFilterMatchAllOption
impl Debug for TcFilterMatchAllOption
source§impl Nla for TcFilterMatchAllOption
impl Nla for TcFilterMatchAllOption
source§impl PartialEq for TcFilterMatchAllOption
impl PartialEq for TcFilterMatchAllOption
source§fn eq(&self, other: &TcFilterMatchAllOption) -> bool
fn eq(&self, other: &TcFilterMatchAllOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TcFilterMatchAllOption
impl StructuralEq for TcFilterMatchAllOption
impl StructuralPartialEq for TcFilterMatchAllOption
Auto Trait Implementations§
impl RefUnwindSafe for TcFilterMatchAllOption
impl Send for TcFilterMatchAllOption
impl Sync for TcFilterMatchAllOption
impl Unpin for TcFilterMatchAllOption
impl UnwindSafe for TcFilterMatchAllOption
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