pub struct CgroupPid {
pub pid: u64,
}Expand description
A structure representing a pid. Currently implementations exist for u64 and
std::process::Child.
Fields§
§pid: u64The process identifier
Trait Implementations§
impl Copy for CgroupPid
impl Eq for CgroupPid
Source§impl Ord for CgroupPid
impl Ord for CgroupPid
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 CgroupPid
impl PartialOrd for CgroupPid
impl StructuralPartialEq for CgroupPid
Auto Trait Implementations§
impl Freeze for CgroupPid
impl RefUnwindSafe for CgroupPid
impl Send for CgroupPid
impl Sync for CgroupPid
impl Unpin for CgroupPid
impl UnsafeUnpin for CgroupPid
impl UnwindSafe for CgroupPid
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