Enum netlink_packet_route::link::InfoMacSec
source · #[non_exhaustive]pub enum InfoMacSec {
Show 15 variants
Sci(u64),
Port(u16),
IcvLen(u8),
CipherSuite(MacSecCipherId),
Window(u32),
EncodingSa(u8),
Encrypt(u8),
Protect(u8),
IncSci(u8),
Es(u8),
Scb(u8),
ReplayProtect(u8),
Validation(MacSecValidate),
Offload(MacSecOffload),
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.
Sci(u64)
Port(u16)
IcvLen(u8)
CipherSuite(MacSecCipherId)
Window(u32)
EncodingSa(u8)
Encrypt(u8)
Protect(u8)
IncSci(u8)
Es(u8)
Scb(u8)
ReplayProtect(u8)
Validation(MacSecValidate)
Offload(MacSecOffload)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for InfoMacSec
impl Clone for InfoMacSec
source§fn clone(&self) -> InfoMacSec
fn clone(&self) -> InfoMacSec
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 InfoMacSec
impl Debug for InfoMacSec
source§impl Nla for InfoMacSec
impl Nla for InfoMacSec
source§impl PartialEq for InfoMacSec
impl PartialEq for InfoMacSec
source§fn eq(&self, other: &InfoMacSec) -> bool
fn eq(&self, other: &InfoMacSec) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InfoMacSec
impl StructuralEq for InfoMacSec
impl StructuralPartialEq for InfoMacSec
Auto Trait Implementations§
impl RefUnwindSafe for InfoMacSec
impl Send for InfoMacSec
impl Sync for InfoMacSec
impl Unpin for InfoMacSec
impl UnwindSafe for InfoMacSec
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