Struct nc::types::bpf_prog_info_t

source ·
#[repr(C)]
pub struct bpf_prog_info_t {
Show 34 fields pub type_: u32, pub id: u32, pub tag: [u8; 8], pub jited_prog_len: u32, pub xlated_prog_len: u32, pub jited_prog_insns: u64, pub xlated_prog_insns: u64, pub load_time: u64, pub created_by_uid: u32, pub nr_map_ids: u32, pub map_ids: u64, pub name: [u8; 16], pub ifindex: u32, pub gpl_compatible: u8, pub netns_dev: u64, pub netns_ino: u64, pub nr_jited_ksyms: u32, pub nr_jited_func_lens: u32, pub jited_ksyms: u64, pub jited_func_lens: u64, pub btf_id: u32, pub func_info_rec_size: u32, pub func_info: u64, pub nr_func_info: u32, pub nr_line_info: u32, pub line_info: u64, pub jited_line_info: u64, pub nr_jited_line_info: u32, pub line_info_rec_size: u32, pub jited_line_info_rec_size: u32, pub nr_prog_tags: u32, pub prog_tags: u64, pub run_time_ns: u64, pub run_cnt: u64,
}

Fields§

§type_: u32§id: u32§tag: [u8; 8]§jited_prog_len: u32§xlated_prog_len: u32§jited_prog_insns: u64§xlated_prog_insns: u64§load_time: u64

ns since boottime

§created_by_uid: u32§nr_map_ids: u32§map_ids: u64§name: [u8; 16]§ifindex: u32§gpl_compatible: u8§netns_dev: u64§netns_ino: u64§nr_jited_ksyms: u32§nr_jited_func_lens: u32§jited_ksyms: u64§jited_func_lens: u64§btf_id: u32§func_info_rec_size: u32§func_info: u64§nr_func_info: u32§nr_line_info: u32§line_info: u64§jited_line_info: u64§nr_jited_line_info: u32§line_info_rec_size: u32§jited_line_info_rec_size: u32§nr_prog_tags: u32§prog_tags: u64§run_time_ns: u64§run_cnt: u64

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.