pub struct Pid(/* private fields */);Expand description
Wrapper around pid_t.
Implementations§
Source§impl Pid
impl Pid
Sourcepub const fn current_thread() -> Self
pub const fn current_thread() -> Self
The current thread is represented by 0 when using sched_* functions.
Note that this is different from the value of calling getpid(), which returns the
actual pid for the current process.
Trait Implementations§
Source§impl Ord for Pid
impl Ord for Pid
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Pid
impl PartialOrd for Pid
impl Copy for Pid
impl Eq for Pid
impl StructuralPartialEq for Pid
Auto Trait Implementations§
impl Freeze for Pid
impl RefUnwindSafe for Pid
impl Send for Pid
impl Sync for Pid
impl Unpin for Pid
impl UnsafeUnpin for Pid
impl UnwindSafe for Pid
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