pub struct LineSecInfo {
pub num_info: u32,
pub line_info: Vec<bpf_line_info>,
/* private fields */
}Expand description
A collection of bpf_line_info collected from the btf_ext_info_sec struct
inside the line_info subsection.
See BPF Type Format (BTF) — The Linux Kernel documentation for more information.
Fields§
§num_info: u32The number of entries
line_info: Vec<bpf_line_info>The bpf_line_info entries
Implementations§
Source§impl LineSecInfo
impl LineSecInfo
Trait Implementations§
Source§impl Clone for LineSecInfo
impl Clone for LineSecInfo
Source§fn clone(&self) -> LineSecInfo
fn clone(&self) -> LineSecInfo
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 LineSecInfo
impl Debug for LineSecInfo
Source§impl Default for LineSecInfo
impl Default for LineSecInfo
Source§fn default() -> LineSecInfo
fn default() -> LineSecInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LineSecInfo
impl RefUnwindSafe for LineSecInfo
impl Send for LineSecInfo
impl Sync for LineSecInfo
impl Unpin for LineSecInfo
impl UnwindSafe for LineSecInfo
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