#[non_exhaustive]pub enum ActNla {
Unspec(Vec<u8>),
Kind(String),
Options(Vec<ActOpt>),
Index(u32),
Stats(Vec<Stats2>),
Cookie(Vec<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.
Unspec(Vec<u8>)
Kind(String)
Options(Vec<ActOpt>)
Index(u32)
Stats(Vec<Stats2>)
Cookie(Vec<u8>)
Other(DefaultNla)
Trait Implementations§
source§impl PartialEq<ActNla> for ActNla
impl PartialEq<ActNla> for ActNla
impl Eq for ActNla
impl StructuralEq for ActNla
impl StructuralPartialEq for ActNla
Auto Trait Implementations§
impl RefUnwindSafe for ActNla
impl Send for ActNla
impl Sync for ActNla
impl Unpin for ActNla
impl UnwindSafe for ActNla
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