pub struct Exit {
pub pid: u32,
pub ppid: u32,
pub tid: u32,
pub ptid: u32,
pub time: u64,
}Expand description
EXIT records indicate that a process has exited.
This struct corresponds to PERF_RECORD_EXIT. See the manpage for more
documentation.
Fields§
§pid: u32§ppid: u32§tid: u32§ptid: u32§time: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Exit
impl RefUnwindSafe for Exit
impl Send for Exit
impl Sync for Exit
impl Unpin for Exit
impl UnwindSafe for Exit
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