pub enum Id {
All,
Pid(Pid),
PGid(Pid),
PIDFd(RawFd),
}
Expand description
The ID argument for waitid
Variants§
All
Wait for any child
Pid(Pid)
Wait for the child whose process ID matches the given PID
PGid(Pid)
Wait for the child whose process group ID matches the given PID
If the PID is zero, the caller’s process group is used since Linux 5.4.
PIDFd(RawFd)
Wait for the child referred to by the given PID file descriptor
Trait Implementations§
source§impl Ord for Id
impl Ord for Id
source§impl PartialOrd for Id
impl PartialOrd for Id
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Id
impl Eq for Id
impl StructuralEq for Id
impl StructuralPartialEq for Id
Auto Trait Implementations§
impl RefUnwindSafe for Id
impl Send for Id
impl Sync for Id
impl Unpin for Id
impl UnwindSafe for Id
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