#[repr(C)]pub struct event_proc_terminate {
pub unused: [u8; 4],
pub signal: signal,
pub exitcode: exitcode,
}Fields§
§unused: [u8; 4]Obsolete.
signal: signalIf zero, the process has exited. Otherwise, the signal condition causing it to terminated.
exitcode: exitcodeIf exited, the exit code of the process.
Trait Implementations§
Source§impl Clone for event_proc_terminate
impl Clone for event_proc_terminate
Source§fn clone(&self) -> event_proc_terminate
fn clone(&self) -> event_proc_terminate
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 moreimpl Copy for event_proc_terminate
Auto Trait Implementations§
impl Freeze for event_proc_terminate
impl RefUnwindSafe for event_proc_terminate
impl Send for event_proc_terminate
impl Sync for event_proc_terminate
impl Unpin for event_proc_terminate
impl UnwindSafe for event_proc_terminate
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