pub enum Id {
Id(u32),
All,
Any,
}
Expand description
Part of a process id.
Variants§
Id(u32)
A process or thread id. This value may not be 0 or -1.
All
A special form meaning all processes or all threads of a given process.
Any
A special form meaning any process or any thread of a given process.
Trait Implementations§
impl Copy for Id
impl StructuralPartialEq for Id
Auto Trait Implementations§
impl Freeze for Id
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