pub struct TracingLinkInfo {
pub attach_type: ProgramAttachType,
pub target_obj_id: u32,
pub target_btf_id: u32,
}Expand description
Information about a tracing link
Fields§
§attach_type: ProgramAttachTypeAttach type of the tracing link.
target_obj_id: u32Target object ID (prog_id for ProgramType::Ext, otherwise
BTF object id).
target_btf_id: u32BTF type id inside the target object.
Trait Implementations§
Source§impl Clone for TracingLinkInfo
impl Clone for TracingLinkInfo
Source§fn clone(&self) -> TracingLinkInfo
fn clone(&self) -> TracingLinkInfo
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 moreAuto Trait Implementations§
impl Freeze for TracingLinkInfo
impl RefUnwindSafe for TracingLinkInfo
impl Send for TracingLinkInfo
impl Sync for TracingLinkInfo
impl Unpin for TracingLinkInfo
impl UnwindSafe for TracingLinkInfo
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