#[repr(C)]pub struct bpf_object_subskeleton {
pub sz: size_t,
pub obj: *const bpf_object,
pub map_cnt: c_int,
pub map_skel_sz: c_int,
pub maps: *mut bpf_map_skeleton,
pub prog_cnt: c_int,
pub prog_skel_sz: c_int,
pub progs: *mut bpf_prog_skeleton,
pub var_cnt: c_int,
pub var_skel_sz: c_int,
pub vars: *mut bpf_var_skeleton,
}Fields§
§sz: size_t§obj: *const bpf_object§map_cnt: c_int§map_skel_sz: c_int§maps: *mut bpf_map_skeleton§prog_cnt: c_int§prog_skel_sz: c_int§progs: *mut bpf_prog_skeleton§var_cnt: c_int§var_skel_sz: c_int§vars: *mut bpf_var_skeletonTrait Implementations§
Source§impl Clone for bpf_object_subskeleton
impl Clone for bpf_object_subskeleton
Source§fn clone(&self) -> bpf_object_subskeleton
fn clone(&self) -> bpf_object_subskeleton
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for bpf_object_subskeleton
impl Debug for bpf_object_subskeleton
Source§impl Default for bpf_object_subskeleton
impl Default for bpf_object_subskeleton
impl Copy for bpf_object_subskeleton
Auto Trait Implementations§
impl Freeze for bpf_object_subskeleton
impl RefUnwindSafe for bpf_object_subskeleton
impl !Send for bpf_object_subskeleton
impl !Sync for bpf_object_subskeleton
impl Unpin for bpf_object_subskeleton
impl UnwindSafe for bpf_object_subskeleton
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more