#[repr(C)]pub struct ProcessForkEvent {
pub header: EventHeader,
pub parent_pid: u32,
pub child_pid: u32,
}Expand description
Process fork event
Fields§
§header: EventHeader§parent_pid: u32§child_pid: u32Trait Implementations§
Source§impl Clone for ProcessForkEvent
impl Clone for ProcessForkEvent
Source§fn clone(&self) -> ProcessForkEvent
fn clone(&self) -> ProcessForkEvent
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 moreSource§impl Debug for ProcessForkEvent
impl Debug for ProcessForkEvent
impl Copy for ProcessForkEvent
Auto Trait Implementations§
impl Freeze for ProcessForkEvent
impl RefUnwindSafe for ProcessForkEvent
impl Send for ProcessForkEvent
impl Sync for ProcessForkEvent
impl Unpin for ProcessForkEvent
impl UnwindSafe for ProcessForkEvent
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