[][src]Struct procfs::CGroupController

pub struct CGroupController {
    pub name: String,
    pub hierarchy: u32,
    pub num_cgroups: u32,
    pub enabled: bool,
}

Container group controller information.

See also the cgroups() method.

Fields

name: String

The name of the controller.

hierarchy: u32

The unique ID of the cgroup hierarchy on which this controller is mounted.

If multiple cgroups v1 controllers are bound to the same hierarchy, then each will show the same hierarchy ID in this field. The value in this field will be 0 if:

  • the controller is not mounted on a cgroups v1 hierarchy;
  • the controller is bound to the cgroups v2 single unified hierarchy; or
  • the controller is disabled (see below).
num_cgroups: u32

The number of control groups in this hierarchy using this controller.

enabled: bool

This field contains the value true if this controller is enabled, or false if it has been disabled

Trait Implementations

impl Debug for CGroupController[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.