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

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

Projection that may be projected along with other supported volume types

Fields

config_map: Option<ConfigMapProjection>

information about the configMap data to project

downward_api: Option<DownwardAPIProjection>

information about the downwardAPI data to project

secret: Option<SecretProjection>

information about the secret data to project

service_account_token: Option<ServiceAccountTokenProjection>

information about the serviceAccountToken data to project

Trait Implementations

impl Clone for VolumeProjection[src]

impl Debug for VolumeProjection[src]

impl Default for VolumeProjection[src]

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

impl PartialEq<VolumeProjection> for VolumeProjection[src]

impl Serialize for VolumeProjection[src]

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