#[non_exhaustive]pub enum TcFilterFlowerMplsLseOption {
LseDepth(u8),
LseTtl(u8),
LseBos(u8),
LseTc(u8),
LseLabel(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 TcFilterFlowerMplsLseOption
impl Clone for TcFilterFlowerMplsLseOption
Source§fn clone(&self) -> TcFilterFlowerMplsLseOption
fn clone(&self) -> TcFilterFlowerMplsLseOption
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 TcFilterFlowerMplsLseOption
impl Debug for TcFilterFlowerMplsLseOption
Source§impl Nla for TcFilterFlowerMplsLseOption
impl Nla for TcFilterFlowerMplsLseOption
Source§impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<NlaBuffer<&'a T>> for TcFilterFlowerMplsLseOption
impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<NlaBuffer<&'a T>> for TcFilterFlowerMplsLseOption
impl Eq for TcFilterFlowerMplsLseOption
impl StructuralPartialEq for TcFilterFlowerMplsLseOption
Auto Trait Implementations§
impl Freeze for TcFilterFlowerMplsLseOption
impl RefUnwindSafe for TcFilterFlowerMplsLseOption
impl Send for TcFilterFlowerMplsLseOption
impl Sync for TcFilterFlowerMplsLseOption
impl Unpin for TcFilterFlowerMplsLseOption
impl UnwindSafe for TcFilterFlowerMplsLseOption
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