pub struct ProcessStopResult {
pub pid: u32,
pub pgid: Option<u32>,
pub pids: Option<Vec<u32>>,
}Expand description
Process stop result with group information
Fields§
§pid: u32§pgid: Option<u32>§pids: Option<Vec<u32>>Trait Implementations§
Source§impl Clone for ProcessStopResult
impl Clone for ProcessStopResult
Source§fn clone(&self) -> ProcessStopResult
fn clone(&self) -> ProcessStopResult
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 moreAuto Trait Implementations§
impl Freeze for ProcessStopResult
impl RefUnwindSafe for ProcessStopResult
impl Send for ProcessStopResult
impl Sync for ProcessStopResult
impl Unpin for ProcessStopResult
impl UnsafeUnpin for ProcessStopResult
impl UnwindSafe for ProcessStopResult
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