pub struct CgroupPid {
pub pid: u64,
}
Expand description
A structure representing a pid
. Currently implementations exist for u64
and
std::process::Child
.
Fields§
§pid: u64
The process identifier
Trait Implementations§
Source§impl Ord for CgroupPid
impl Ord for CgroupPid
Source§impl PartialOrd for CgroupPid
impl PartialOrd for CgroupPid
impl Eq 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 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