Struct libbpf_sys::bpf_prog_info

source ·
#[repr(C)]
pub struct bpf_prog_info {
Show 40 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: [c_char; 16], pub ifindex: __u32, pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>, 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, pub recursion_misses: __u64, pub verified_insns: __u32, pub attach_btf_obj_id: __u32, pub attach_btf_id: __u32, pub __bindgen_padding_0: [u8; 4],
}

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§created_by_uid: __u32§nr_map_ids: __u32§map_ids: __u64§name: [c_char; 16]§ifindex: __u32§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>§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§recursion_misses: __u64§verified_insns: __u32§attach_btf_obj_id: __u32§attach_btf_id: __u32§__bindgen_padding_0: [u8; 4]

Implementations§

source§

impl bpf_prog_info

source

pub fn gpl_compatible(&self) -> __u32

source

pub fn set_gpl_compatible(&mut self, val: __u32)

source

pub fn new_bitfield_1(gpl_compatible: __u32) -> __BindgenBitfieldUnit<[u8; 4]>

Trait Implementations§

source§

impl Clone for bpf_prog_info

source§

fn clone(&self) -> bpf_prog_info

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for bpf_prog_info

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for bpf_prog_info

source§

fn default() -> bpf_prog_info

Returns the “default value” for a type. Read more
source§

impl Copy for bpf_prog_info

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.