pub struct RxOffload {
pub vlan_strip: bool,
pub ipv4_cksum: bool,
pub udp_cksum: bool,
pub tcp_cksum: bool,
}Expand description
Hardware offload flags for RX
Fields§
§vlan_strip: boolHardware VLAN stripping
ipv4_cksum: boolHardware IPv4 checksum verification
udp_cksum: boolHardware UDP checksum verification
tcp_cksum: boolHardware TCP checksum verification
Implementations§
Trait Implementations§
impl Copy for RxOffload
Auto Trait Implementations§
impl Freeze for RxOffload
impl RefUnwindSafe for RxOffload
impl Send for RxOffload
impl Sync for RxOffload
impl Unpin for RxOffload
impl UnsafeUnpin for RxOffload
impl UnwindSafe for RxOffload
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