pub struct ProcessCGroup {
pub hierarchy: u32,
pub controllers: Vec<String>,
pub pathname: String,
}
Expand description
Information about a process cgroup
Fields§
§hierarchy: u32
For cgroups version 1 hierarchies, this field contains a unique hierarchy ID number that can be matched to a hierarchy ID in /proc/cgroups. For the cgroups version 2 hierarchy, this field contains the value 0.
controllers: Vec<String>
For cgroups version 1 hierarchies, this field contains a comma-separated list of the controllers bound to the hierarchy.
For the cgroups version 2 hierarchy, this field is empty.
pathname: String
This field contains the pathname of the control group in the hierarchy to which the process belongs.
This pathname is relative to the mount point of the hierarchy.
Trait Implementations§
source§impl Clone for ProcessCGroup
impl Clone for ProcessCGroup
source§fn clone(&self) -> ProcessCGroup
fn clone(&self) -> ProcessCGroup
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ProcessCGroup
impl Debug for ProcessCGroup
source§impl<'de> Deserialize<'de> for ProcessCGroup
impl<'de> Deserialize<'de> for ProcessCGroup
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProcessCGroup
impl RefUnwindSafe for ProcessCGroup
impl Send for ProcessCGroup
impl Sync for ProcessCGroup
impl Unpin for ProcessCGroup
impl UnwindSafe for ProcessCGroup
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)