pub struct LinuxResources { /* private fields */ }
Expand description

Resource constraints for container

Implementations§

source§

impl LinuxResources

source

pub fn devices(&self) -> &Option<Vec<LinuxDeviceCgroup>>

Devices configures the device allowlist.

source

pub fn memory(&self) -> &Option<LinuxMemory>

Memory restriction configuration.

source

pub fn cpu(&self) -> &Option<LinuxCpu>

CPU resource restriction configuration.

source

pub fn pids(&self) -> &Option<LinuxPids>

Task resource restrictions

source

pub fn block_io(&self) -> &Option<LinuxBlockIo>

BlockIO restriction configuration.

source

pub fn hugepage_limits(&self) -> &Option<Vec<LinuxHugepageLimit>>

Hugetlb limit (in bytes).

source

pub fn network(&self) -> &Option<LinuxNetwork>

Network restriction configuration.

source

pub fn rdma(&self) -> &Option<HashMap<String, LinuxRdma>>

Rdma resource restriction configuration. Limits are a set of key value pairs that define RDMA resource limits, where the key is device name and value is resource limits.

source

pub fn unified(&self) -> &Option<HashMap<String, String>>

Unified resources.

source§

impl LinuxResources

source

pub fn set_devices(&mut self, val: Option<Vec<LinuxDeviceCgroup>>) -> &mut Self

Devices configures the device allowlist.

source

pub fn set_memory(&mut self, val: Option<LinuxMemory>) -> &mut Self

Memory restriction configuration.

source

pub fn set_cpu(&mut self, val: Option<LinuxCpu>) -> &mut Self

CPU resource restriction configuration.

source

pub fn set_pids(&mut self, val: Option<LinuxPids>) -> &mut Self

Task resource restrictions

source

pub fn set_block_io(&mut self, val: Option<LinuxBlockIo>) -> &mut Self

BlockIO restriction configuration.

source

pub fn set_hugepage_limits( &mut self, val: Option<Vec<LinuxHugepageLimit>> ) -> &mut Self

Hugetlb limit (in bytes).

source

pub fn set_network(&mut self, val: Option<LinuxNetwork>) -> &mut Self

Network restriction configuration.

source

pub fn set_rdma(&mut self, val: Option<HashMap<String, LinuxRdma>>) -> &mut Self

Rdma resource restriction configuration. Limits are a set of key value pairs that define RDMA resource limits, where the key is device name and value is resource limits.

source

pub fn set_unified(&mut self, val: Option<HashMap<String, String>>) -> &mut Self

Unified resources.

Trait Implementations§

source§

impl Clone for LinuxResources

source§

fn clone(&self) -> LinuxResources

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LinuxResources

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for LinuxResources

source§

fn default() -> LinuxResources

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for LinuxResources

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for LinuxResources

source§

fn eq(&self, other: &LinuxResources) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for LinuxResources

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for LinuxResources

source§

impl StructuralPartialEq for LinuxResources

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,