#[repr(C)]pub struct rte_eth_rxconf {
pub rx_thresh: rte_eth_thresh,
pub rx_free_thresh: u16,
pub rx_drop_en: u8,
pub rx_deferred_start: u8,
pub rx_nseg: u16,
pub share_group: u16,
pub share_qid: u16,
pub offloads: u64,
pub rx_seg: *mut c_void,
pub reserved_64s: [u64; 2],
pub reserved_ptrs: [*mut c_void; 2],
}Fields§
§rx_thresh: rte_eth_thresh§rx_free_thresh: u16§rx_drop_en: u8§rx_deferred_start: u8§rx_nseg: u16§offloads: u64§rx_seg: *mut c_void§reserved_64s: [u64; 2]§reserved_ptrs: [*mut c_void; 2]Trait Implementations§
Source§impl Clone for rte_eth_rxconf
impl Clone for rte_eth_rxconf
Source§fn clone(&self) -> rte_eth_rxconf
fn clone(&self) -> rte_eth_rxconf
Returns a duplicate 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 rte_eth_rxconf
impl Debug for rte_eth_rxconf
Source§impl Default for rte_eth_rxconf
impl Default for rte_eth_rxconf
impl Copy for rte_eth_rxconf
Auto Trait Implementations§
impl Freeze for rte_eth_rxconf
impl RefUnwindSafe for rte_eth_rxconf
impl !Send for rte_eth_rxconf
impl !Sync for rte_eth_rxconf
impl Unpin for rte_eth_rxconf
impl UnsafeUnpin for rte_eth_rxconf
impl UnwindSafe for rte_eth_rxconf
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