[][src]Struct capsule_ffi::rte_eth_dev

#[repr(C)]#[repr(align(64))]pub struct rte_eth_dev {
    pub rx_pkt_burst: eth_rx_burst_t,
    pub tx_pkt_burst: eth_tx_burst_t,
    pub tx_pkt_prepare: eth_tx_prep_t,
    pub data: *mut rte_eth_dev_data,
    pub process_private: *mut c_void,
    pub dev_ops: *const eth_dev_ops,
    pub device: *mut rte_device,
    pub intr_handle: *mut rte_intr_handle,
    pub link_intr_cbs: rte_eth_dev_cb_list,
    pub post_rx_burst_cbs: [*mut rte_eth_rxtx_callback; 1024],
    pub pre_tx_burst_cbs: [*mut rte_eth_rxtx_callback; 1024],
    pub state: Type,
    pub security_ctx: *mut c_void,
    pub reserved_64s: [u64; 4],
    pub reserved_ptrs: [*mut c_void; 4],
}

Fields

rx_pkt_burst: eth_rx_burst_ttx_pkt_burst: eth_tx_burst_ttx_pkt_prepare: eth_tx_prep_tdata: *mut rte_eth_dev_dataprocess_private: *mut c_voiddev_ops: *const eth_dev_opsdevice: *mut rte_deviceintr_handle: *mut rte_intr_handlelink_intr_cbs: rte_eth_dev_cb_listpost_rx_burst_cbs: [*mut rte_eth_rxtx_callback; 1024]pre_tx_burst_cbs: [*mut rte_eth_rxtx_callback; 1024]state: Typesecurity_ctx: *mut c_voidreserved_64s: [u64; 4]reserved_ptrs: [*mut c_void; 4]

Trait Implementations

impl Clone for rte_eth_dev[src]

impl Copy for rte_eth_dev[src]

impl Default for rte_eth_dev[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.