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