pub struct UprobeMultiLinkInfo {
pub path_size: u32,
pub count: u32,
pub flags: u32,
pub pid: u32,
}
Expand description
Information about a multi-uprobe link.
Fields§
§path_size: u32
Size of the path.
count: u32
Count of uprobe targets.
flags: u32
Flags for the link.
pid: u32
PID to which the uprobe is attached.
Trait Implementations§
Source§impl Clone for UprobeMultiLinkInfo
impl Clone for UprobeMultiLinkInfo
Source§fn clone(&self) -> UprobeMultiLinkInfo
fn clone(&self) -> UprobeMultiLinkInfo
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 UprobeMultiLinkInfo
impl RefUnwindSafe for UprobeMultiLinkInfo
impl Send for UprobeMultiLinkInfo
impl Sync for UprobeMultiLinkInfo
impl Unpin for UprobeMultiLinkInfo
impl UnwindSafe for UprobeMultiLinkInfo
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