[−][src]Struct cgroups_rs::devices::DevicesController
A controller that allows controlling the devices subsystem of a Cgroup.
In essence, using the devices controller, it is possible to allow or disallow sets of devices to be used by the control group's tasks.
Implementations
impl DevicesController[src]
pub fn new(root: PathBuf) -> Self[src]
Constructs a new DevicesController with root serving as the root of the control group.
pub fn allow_device(
&self,
devtype: DeviceType,
major: i64,
minor: i64,
perm: &Vec<DevicePermissions>
) -> Result<()>[src]
&self,
devtype: DeviceType,
major: i64,
minor: i64,
perm: &Vec<DevicePermissions>
) -> Result<()>
Allow a (possibly, set of) device(s) to be used by the tasks in the control group.
When -1 is passed as major or minor, the kernel interprets that value as "any",
meaning that it will match any device.
pub fn deny_device(
&self,
devtype: DeviceType,
major: i64,
minor: i64,
perm: &Vec<DevicePermissions>
) -> Result<()>[src]
&self,
devtype: DeviceType,
major: i64,
minor: i64,
perm: &Vec<DevicePermissions>
) -> Result<()>
Deny the control group's tasks access to the devices covered by dev.
When -1 is passed as major or minor, the kernel interprets that value as "any",
meaning that it will match any device.
pub fn allowed_devices(&self) -> Result<Vec<DeviceResource>>[src]
Get the current list of allowed devices.
Trait Implementations
impl Clone for DevicesController[src]
pub fn clone(&self) -> DevicesController[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DevicesController[src]
impl<'a> From<&'a Subsystem> for &'a DevicesController[src]
pub fn from(sub: &'a Subsystem) -> &'a DevicesController[src]
Auto Trait Implementations
impl RefUnwindSafe for DevicesController[src]
impl Send for DevicesController[src]
impl Sync for DevicesController[src]
impl Unpin for DevicesController[src]
impl UnwindSafe for DevicesController[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Controller for T where
T: ControllerInternal, [src]
T: ControllerInternal,
pub fn control_type(&Self) -> Controllers[src]
pub fn path(&Self) -> &Path[src]
pub fn apply(&Self, &Resources) -> Result<(), Error>[src]
Apply a set of resources to the Controller, invoking its internal functions to pass the kernel the information.
pub fn create(&Self)[src]
Create this controller
pub fn set_notify_on_release(&Self, bool) -> Result<(), Error>[src]
Set notify_on_release
pub fn set_release_agent(&Self, &str) -> Result<(), Error>[src]
Set release_agent
pub fn exists(&Self) -> bool[src]
Does this controller already exist?
pub fn delete(&Self) -> Result<(), Error>[src]
Delete the controller.
pub fn add_task(&Self, &CgroupPid) -> Result<(), Error>[src]
Attach a task to this controller.
pub fn add_task_by_tgid(&Self, &CgroupPid) -> Result<(), Error>[src]
Attach a task to this controller by thread group id.
pub fn tasks(&Self) -> Vec<CgroupPid, Global>[src]
Get the list of tasks that this controller has.
pub fn v2(&Self) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,