Struct k8s_openapi::v1_10::api::extensions::v1beta1::SELinuxStrategyOptions[][src]

pub struct SELinuxStrategyOptions {
    pub rule: String,
    pub se_linux_options: Option<SELinuxOptions>,
}

SELinux Strategy Options defines the strategy type and any options used to create the strategy.

Fields

type is the strategy that will dictate the allowable labels that may be set.

seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/

Trait Implementations

impl Clone for SELinuxStrategyOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SELinuxStrategyOptions
[src]

Formats the value using the given formatter. Read more

impl Default for SELinuxStrategyOptions
[src]

Returns the "default value" for a type. Read more

impl PartialEq for SELinuxStrategyOptions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for SELinuxStrategyOptions
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for SELinuxStrategyOptions
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations