pub struct ExitInfo {
pub siginfo: siginfo_t,
pub rusage: rusage,
}
Expand description
Information about an exited process.
Fields§
§siginfo: siginfo_t
Information about how the process exited.
rusage: rusage
Resource usage for the process and its children.
Implementations§
Auto Trait Implementations§
impl Freeze for ExitInfo
impl RefUnwindSafe for ExitInfo
impl Send for ExitInfo
impl Sync for ExitInfo
impl Unpin for ExitInfo
impl UnwindSafe for ExitInfo
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