[][src]Struct k8s_openapi::api::core::v1::EnvFromSource

pub struct EnvFromSource {
    pub config_map_ref: Option<ConfigMapEnvSource>,
    pub prefix: Option<String>,
    pub secret_ref: Option<SecretEnvSource>,
}

EnvFromSource represents the source of a set of ConfigMaps

Fields

config_map_ref: Option<ConfigMapEnvSource>

The ConfigMap to select from

prefix: Option<String>

An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

secret_ref: Option<SecretEnvSource>

The Secret to select from

Trait Implementations

impl Clone for EnvFromSource[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<EnvFromSource> for EnvFromSource[src]

impl Default for EnvFromSource[src]

impl Debug for EnvFromSource[src]

impl Serialize for EnvFromSource[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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