pub struct ReapedEvent {
pub pid: Pid,
pub name: String,
pub exit_status: i32,
pub restarted_as: Option<Pid>,
}Fields§
§pid: Pid§name: String§exit_status: i32§restarted_as: Option<Pid>Trait Implementations§
Source§impl Clone for ReapedEvent
impl Clone for ReapedEvent
Source§fn clone(&self) -> ReapedEvent
fn clone(&self) -> ReapedEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReapedEvent
impl RefUnwindSafe for ReapedEvent
impl Send for ReapedEvent
impl Sync for ReapedEvent
impl Unpin for ReapedEvent
impl UnsafeUnpin for ReapedEvent
impl UnwindSafe for ReapedEvent
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