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

pub struct DownwardAPIProjection {
    pub items: Option<Vec<DownwardAPIVolumeFile>>,
}

Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

Fields

Items is a list of DownwardAPIVolume file

Trait Implementations

impl Clone for DownwardAPIProjection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DownwardAPIProjection
[src]

Formats the value using the given formatter. Read more

impl Default for DownwardAPIProjection
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for DownwardAPIProjection
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations