Skip to main content

GeneratedServiceRuntimeField

Enum GeneratedServiceRuntimeField 

Source
#[non_exhaustive]
pub enum GeneratedServiceRuntimeField {
Show 21 variants Domainname(GeneratedString), Isolation(GeneratedString), MacAddress(GeneratedString), Uts(GeneratedString), UseApiSocket(bool), GpusAll(GeneratedString), CpuRtRuntime(GeneratedCpuRtRuntime), CpuShares(GeneratedString), Cpus(GeneratedString), Cpuset(GeneratedString), DeviceCgroupRules(Vec<GeneratedString>), Ipc(GeneratedString), MemReservation(GeneratedString), MemSwappiness(GeneratedString), MemswapLimit(GeneratedString), NetworkMode(GeneratedString), OomKillDisable(bool), OomScoreAdj(GeneratedString), Pid(GeneratedString), Scale(GeneratedString), VolumesFrom(Vec<GeneratedString>),
}
Expand description

Raw service resource and namespace fields selected for deterministic generated output. String-bearing variants use minimal safe quoting so caller-selected spelling remains a YAML string; cpu_rt_runtime explicitly selects either an integer microsecond scalar or a duration string.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Domainname(GeneratedString)

Raw resolved service domain name.

§

Isolation(GeneratedString)

Raw resolved service isolation spelling.

§

MacAddress(GeneratedString)

Raw resolved service MAC-address spelling.

§

Uts(GeneratedString)

Raw resolved service UTS spelling.

§

UseApiSocket(bool)

Literal API-socket mount choice.

§

GpusAll(GeneratedString)

Safe scalar GPU selector.

§

CpuRtRuntime(GeneratedCpuRtRuntime)

cpu_rt_runtime with an explicit integer or duration scalar category.

§

CpuShares(GeneratedString)

cpu_shares raw integer spelling.

§

Cpus(GeneratedString)

cpus raw decimal spelling.

§

Cpuset(GeneratedString)

cpuset raw string spelling.

§

DeviceCgroupRules(Vec<GeneratedString>)

Ordered raw device_cgroup_rules strings.

§

Ipc(GeneratedString)

ipc raw mode spelling.

§

MemReservation(GeneratedString)

mem_reservation raw byte-value spelling.

§

MemSwappiness(GeneratedString)

mem_swappiness raw integer spelling.

§

MemswapLimit(GeneratedString)

memswap_limit raw unlimited, zero, or positive byte-quantity spelling.

§

NetworkMode(GeneratedString)

network_mode raw mode spelling.

§

OomKillDisable(bool)

Literal oom_kill_disable choice.

§

OomScoreAdj(GeneratedString)

oom_score_adj raw integer spelling.

§

Pid(GeneratedString)

pid raw mode spelling.

§

Scale(GeneratedString)

scale raw integer spelling.

§

VolumesFrom(Vec<GeneratedString>)

Ordered raw volumes_from strings.

Trait Implementations§

Source§

impl Clone for GeneratedServiceRuntimeField

Source§

fn clone(&self) -> GeneratedServiceRuntimeField

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for GeneratedServiceRuntimeField

Source§

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

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

impl Eq for GeneratedServiceRuntimeField

Source§

impl PartialEq for GeneratedServiceRuntimeField

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for GeneratedServiceRuntimeField

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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,

Source§

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>,

Source§

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>,

Source§

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.