[][src]Struct openshift_openapi::api::security::v1::SELinuxContextStrategyOptions

pub struct SELinuxContextStrategyOptions {
    pub se_linux_options: Option<SELinuxOptions>,
    pub type_: Option<String>,
}

SELinuxContextStrategyOptions defines the strategy type and any options used to create the strategy.

Fields

se_linux_options: Option<SELinuxOptions>

seLinuxOptions required to run as; required for MustRunAs

type_: Option<String>

Type is the strategy that will dictate what SELinux context is used in the SecurityContext.

Trait Implementations

impl Clone for SELinuxContextStrategyOptions[src]

impl Debug for SELinuxContextStrategyOptions[src]

impl Default for SELinuxContextStrategyOptions[src]

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

impl PartialEq<SELinuxContextStrategyOptions> for SELinuxContextStrategyOptions[src]

impl Serialize for SELinuxContextStrategyOptions[src]

impl StructuralPartialEq for SELinuxContextStrategyOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.