Struct procfs::ProcessCgroup[][src]

pub struct ProcessCgroup {
    pub hierarchy: u32,
    pub controllers: Vec<String>,
    pub pathname: String,
}

Fields

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.

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.

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

impl Debug for ProcessCgroup
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations