Struct k8s_openapi::api::core::v1::SELinuxOptions
source · pub struct SELinuxOptions {
pub level: Option<String>,
pub role: Option<String>,
pub type_: Option<String>,
pub user: Option<String>,
}
Expand description
SELinuxOptions are the labels to be applied to the container
Fields§
§level: Option<String>
Level is SELinux level label that applies to the container.
role: Option<String>
Role is a SELinux role label that applies to the container.
type_: Option<String>
Type is a SELinux type label that applies to the container.
user: Option<String>
User is a SELinux user label that applies to the container.
Trait Implementations§
source§impl Clone for SELinuxOptions
impl Clone for SELinuxOptions
source§fn clone(&self) -> SELinuxOptions
fn clone(&self) -> SELinuxOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SELinuxOptions
impl Debug for SELinuxOptions
source§impl DeepMerge for SELinuxOptions
impl DeepMerge for SELinuxOptions
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for SELinuxOptions
impl Default for SELinuxOptions
source§fn default() -> SELinuxOptions
fn default() -> SELinuxOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SELinuxOptions
impl<'de> Deserialize<'de> for SELinuxOptions
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
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<SELinuxOptions> for SELinuxOptions
impl PartialEq<SELinuxOptions> for SELinuxOptions
source§fn eq(&self, other: &SELinuxOptions) -> bool
fn eq(&self, other: &SELinuxOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.