[][src]Struct capsule_ffi::rte_eth_ntuple_filter

#[repr(C)]pub struct rte_eth_ntuple_filter {
    pub flags: u16,
    pub dst_ip: u32,
    pub dst_ip_mask: u32,
    pub src_ip: u32,
    pub src_ip_mask: u32,
    pub dst_port: u16,
    pub dst_port_mask: u16,
    pub src_port: u16,
    pub src_port_mask: u16,
    pub proto: u8,
    pub proto_mask: u8,
    pub tcp_flags: u8,
    pub priority: u16,
    pub queue: u16,
}

Fields

flags: u16dst_ip: u32dst_ip_mask: u32src_ip: u32src_ip_mask: u32dst_port: u16dst_port_mask: u16src_port: u16src_port_mask: u16proto: u8proto_mask: u8tcp_flags: u8priority: u16queue: u16

Trait Implementations

impl Clone for rte_eth_ntuple_filter[src]

impl Copy for rte_eth_ntuple_filter[src]

impl Debug for rte_eth_ntuple_filter[src]

impl Default for rte_eth_ntuple_filter[src]

impl PartialEq<rte_eth_ntuple_filter> for rte_eth_ntuple_filter[src]

impl StructuralPartialEq for rte_eth_ntuple_filter[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.