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

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

The ConfigMap to select from

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

The Secret to select from

Trait Implementations

impl Clone for EnvFromSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EnvFromSource
[src]

Formats the value using the given formatter. Read more

impl Default for EnvFromSource
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for EnvFromSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations