[][src]Struct rebpf_sys::libbpf_sys::xsk_ring_cons

#[repr(C)]pub struct xsk_ring_cons {
    pub cached_prod: __u32,
    pub cached_cons: __u32,
    pub mask: __u32,
    pub size: __u32,
    pub producer: *mut __u32,
    pub consumer: *mut __u32,
    pub ring: *mut c_void,
    pub flags: *mut __u32,
}

Fields

cached_prod: __u32cached_cons: __u32mask: __u32size: __u32producer: *mut __u32consumer: *mut __u32ring: *mut c_voidflags: *mut __u32

Trait Implementations

impl Clone for xsk_ring_cons[src]

impl Copy for xsk_ring_cons[src]

impl Debug for xsk_ring_cons[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.