pub struct BtfInfo {
pub name: CString,
pub btf: Vec<u8>,
pub id: u32,
}
Expand description
Information about BPF type format.
Fields§
§name: CString
The name associated with this btf information in the kernel.
btf: Vec<u8>
The raw btf bytes from the kernel.
id: u32
The btf id associated with this btf information in the kernel.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BtfInfo
impl RefUnwindSafe for BtfInfo
impl Send for BtfInfo
impl Sync for BtfInfo
impl Unpin for BtfInfo
impl UnwindSafe for BtfInfo
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