pub struct KprobeMultiLinkInfo {
pub count: u32,
pub flags: u32,
pub missed: u64,
}
Expand description
Information about a multi-kprobe link.
Fields§
§count: u32
Count of kprobe targets.
flags: u32
Flags for the link.
missed: u64
Missed probes count.
Trait Implementations§
Source§impl Clone for KprobeMultiLinkInfo
impl Clone for KprobeMultiLinkInfo
Source§fn clone(&self) -> KprobeMultiLinkInfo
fn clone(&self) -> KprobeMultiLinkInfo
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 KprobeMultiLinkInfo
impl RefUnwindSafe for KprobeMultiLinkInfo
impl Send for KprobeMultiLinkInfo
impl Sync for KprobeMultiLinkInfo
impl Unpin for KprobeMultiLinkInfo
impl UnwindSafe for KprobeMultiLinkInfo
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