[][src]Struct rebpf_sys::libbpf_sys::bpf_load_program_attr

#[repr(C)]pub struct bpf_load_program_attr {
    pub prog_type: bpf_prog_type,
    pub expected_attach_type: bpf_attach_type,
    pub name: *const c_char,
    pub insns: *const bpf_insn,
    pub insns_cnt: size_t,
    pub license: *const c_char,
    pub __bindgen_anon_1: bpf_load_program_attr__bindgen_ty_1,
    pub __bindgen_anon_2: bpf_load_program_attr__bindgen_ty_2,
    pub prog_btf_fd: __u32,
    pub func_info_rec_size: __u32,
    pub func_info: *const c_void,
    pub func_info_cnt: __u32,
    pub line_info_rec_size: __u32,
    pub line_info: *const c_void,
    pub line_info_cnt: __u32,
    pub log_level: __u32,
    pub prog_flags: __u32,
}

Fields

prog_type: bpf_prog_typeexpected_attach_type: bpf_attach_typename: *const c_charinsns: *const bpf_insninsns_cnt: size_tlicense: *const c_char__bindgen_anon_1: bpf_load_program_attr__bindgen_ty_1__bindgen_anon_2: bpf_load_program_attr__bindgen_ty_2prog_btf_fd: __u32func_info_rec_size: __u32func_info: *const c_voidfunc_info_cnt: __u32line_info_rec_size: __u32line_info: *const c_voidline_info_cnt: __u32log_level: __u32prog_flags: __u32

Trait Implementations

impl Clone for bpf_load_program_attr[src]

impl Copy for bpf_load_program_attr[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.