Struct k8s_openapi::v1_9::api::core::v1::SELinuxOptions[][src]

pub struct SELinuxOptions {
    pub level: Option<String>,
    pub role: Option<String>,
    pub type_: Option<String>,
    pub user: Option<String>,
}

SELinuxOptions are the labels to be applied to the container

Fields

Level is SELinux level label that applies to the container.

Role is a SELinux role label that applies to the container.

Type is a SELinux type label that applies to the container.

User is a SELinux user label that applies to the container.

Trait Implementations

impl Clone for SELinuxOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SELinuxOptions
[src]

Formats the value using the given formatter. Read more

impl Default for SELinuxOptions
[src]

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

impl PartialEq for SELinuxOptions
[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 SELinuxOptions
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for SELinuxOptions
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations