[][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]

impl Debug for EnvFromSource[src]

impl Default for EnvFromSource[src]

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

impl PartialEq<EnvFromSource> for EnvFromSource[src]

impl Serialize for EnvFromSource[src]

impl StructuralPartialEq for EnvFromSource[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.