Struct k8s_openapi::api::core::v1::EnvFromSource [−][src]
pub struct EnvFromSource {
pub config_map_ref: Option<ConfigMapEnvSource>,
pub prefix: Option<String>,
pub secret_ref: Option<SecretEnvSource>,
}
Expand description
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
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for EnvFromSource
impl Send for EnvFromSource
impl Sync for EnvFromSource
impl Unpin for EnvFromSource
impl UnwindSafe for EnvFromSource
Blanket Implementations
Mutably borrows from an owned value. Read more