[][src]Union capsule_ffi::rte_eth_fdir_flow

#[repr(C)]pub union rte_eth_fdir_flow {
    pub l2_flow: rte_eth_l2_flow,
    pub udp4_flow: rte_eth_udpv4_flow,
    pub tcp4_flow: rte_eth_tcpv4_flow,
    pub sctp4_flow: rte_eth_sctpv4_flow,
    pub ip4_flow: rte_eth_ipv4_flow,
    pub udp6_flow: rte_eth_udpv6_flow,
    pub tcp6_flow: rte_eth_tcpv6_flow,
    pub sctp6_flow: rte_eth_sctpv6_flow,
    pub ipv6_flow: rte_eth_ipv6_flow,
    pub mac_vlan_flow: rte_eth_mac_vlan_flow,
    pub tunnel_flow: rte_eth_tunnel_flow,
    // some fields omitted
}

Fields

l2_flow: rte_eth_l2_flowudp4_flow: rte_eth_udpv4_flowtcp4_flow: rte_eth_tcpv4_flowsctp4_flow: rte_eth_sctpv4_flowip4_flow: rte_eth_ipv4_flowudp6_flow: rte_eth_udpv6_flowtcp6_flow: rte_eth_tcpv6_flowsctp6_flow: rte_eth_sctpv6_flowipv6_flow: rte_eth_ipv6_flowmac_vlan_flow: rte_eth_mac_vlan_flowtunnel_flow: rte_eth_tunnel_flow

Trait Implementations

impl Clone for rte_eth_fdir_flow[src]

impl Copy for rte_eth_fdir_flow[src]

impl Default for rte_eth_fdir_flow[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.