[][src]Struct nc::types::perf_event_query_bpf_t

#[repr(C)]
pub struct perf_event_query_bpf_t {
    pub ids_len: u32,
    pub prog_cnt: u32,
    pub ids: *mut u32,
}

Structure used by below PERF_EVENT_IOC_QUERY_BPF command to query bpf programs attached to the same perf tracepoint as the given perf event.

Fields

ids_len: u32

The below ids array length

prog_cnt: u32

Set by the kernel to indicate the number of available programs

ids: *mut u32

User provided buffer to store program ids

Auto Trait Implementations

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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