#[repr(C)]pub struct rte_eth_conf {
pub link_speeds: u32,
pub rxmode: rte_eth_rxmode,
pub txmode: rte_eth_txmode,
pub lpbk_mode: u32,
pub rx_adv_conf: rte_eth_rx_adv_conf,
pub tx_adv_conf: rte_eth_tx_adv_conf,
pub dcb_capability_en: u32,
pub intr_conf: rte_eth_intr_conf,
}Expand description
Ethernet device configuration
Fields§
§link_speeds: u32§rxmode: rte_eth_rxmode§txmode: rte_eth_txmode§lpbk_mode: u32§rx_adv_conf: rte_eth_rx_adv_conf§tx_adv_conf: rte_eth_tx_adv_conf§dcb_capability_en: u32§intr_conf: rte_eth_intr_confTrait Implementations§
Source§impl Clone for rte_eth_conf
impl Clone for rte_eth_conf
Source§fn clone(&self) -> rte_eth_conf
fn clone(&self) -> rte_eth_conf
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_conf
impl Debug for rte_eth_conf
Source§impl Default for rte_eth_conf
impl Default for rte_eth_conf
Source§fn default() -> rte_eth_conf
fn default() -> rte_eth_conf
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for rte_eth_conf
impl RefUnwindSafe for rte_eth_conf
impl !Send for rte_eth_conf
impl !Sync for rte_eth_conf
impl Unpin for rte_eth_conf
impl UnsafeUnpin for rte_eth_conf
impl UnwindSafe for rte_eth_conf
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