pub enum XskFlags {
TxTimestamp = 1,
TxChecksum = 2,
TxLaunchTimeFifo = 4,
}Available on crate feature
netdev only.Expand description
Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
TxTimestamp = 1
HW timestamping egress packets is supported by the driver.
TxChecksum = 2
L3 checksum HW offload is supported by the driver.
TxLaunchTimeFifo = 4
Launch time HW offload is supported by the driver.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XskFlags
impl RefUnwindSafe for XskFlags
impl Send for XskFlags
impl Sync for XskFlags
impl Unpin for XskFlags
impl UnsafeUnpin for XskFlags
impl UnwindSafe for XskFlags
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