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

pub struct VolumeProjection {
    pub config_map: Option<ConfigMapProjection>,
    pub downward_api: Option<DownwardAPIProjection>,
    pub secret: Option<SecretProjection>,
}

Projection that may be projected along with other supported volume types

Fields

information about the configMap data to project

information about the downwardAPI data to project

information about the secret data to project

Trait Implementations

impl Clone for VolumeProjection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VolumeProjection
[src]

Formats the value using the given formatter. Read more

impl Default for VolumeProjection
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for VolumeProjection
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations