Enum netlink_packet_route::link::LinkXdp
source · #[non_exhaustive]pub enum LinkXdp {
Fd(RawFd),
Attached(XdpAttached),
Flags(u32),
ProgId(u32),
DrvProgId(u32),
SkbProgId(u32),
HwProgId(u32),
ExpectedFd(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.
Fd(RawFd)
Attached(XdpAttached)
Flags(u32)
ProgId(u32)
DrvProgId(u32)
SkbProgId(u32)
HwProgId(u32)
ExpectedFd(u32)
Other(DefaultNla)
Trait Implementations§
source§impl PartialEq for LinkXdp
impl PartialEq for LinkXdp
impl Eq for LinkXdp
impl StructuralEq for LinkXdp
impl StructuralPartialEq for LinkXdp
Auto Trait Implementations§
impl RefUnwindSafe for LinkXdp
impl Send for LinkXdp
impl Sync for LinkXdp
impl Unpin for LinkXdp
impl UnwindSafe for LinkXdp
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