pub struct IoK8sApiCoreV1VolumeProjection {
pub config_map: Option<IoK8sApiCoreV1ConfigMapProjection>,
pub downward_api: Option<IoK8sApiCoreV1DownwardApiProjection>,
pub secret: Option<IoK8sApiCoreV1SecretProjection>,
pub service_account_token: Option<IoK8sApiCoreV1ServiceAccountTokenProjection>,
}
Expand description
Projection that may be projected along with other supported volume types
Fields§
§config_map: Option<IoK8sApiCoreV1ConfigMapProjection>
information about the configMap data to project
downward_api: Option<IoK8sApiCoreV1DownwardApiProjection>
information about the downwardAPI data to project
secret: Option<IoK8sApiCoreV1SecretProjection>
information about the secret data to project
service_account_token: Option<IoK8sApiCoreV1ServiceAccountTokenProjection>
information about the serviceAccountToken data to project
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1VolumeProjection
impl Clone for IoK8sApiCoreV1VolumeProjection
Source§fn clone(&self) -> IoK8sApiCoreV1VolumeProjection
fn clone(&self) -> IoK8sApiCoreV1VolumeProjection
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for IoK8sApiCoreV1VolumeProjection
impl<'de> Deserialize<'de> for IoK8sApiCoreV1VolumeProjection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&IoK8sApiCoreV1VolumeProjection> for IoK8sApiCoreV1VolumeProjection
impl From<&IoK8sApiCoreV1VolumeProjection> for IoK8sApiCoreV1VolumeProjection
Source§fn from(value: &IoK8sApiCoreV1VolumeProjection) -> Self
fn from(value: &IoK8sApiCoreV1VolumeProjection) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoK8sApiCoreV1VolumeProjection
impl RefUnwindSafe for IoK8sApiCoreV1VolumeProjection
impl Send for IoK8sApiCoreV1VolumeProjection
impl Sync for IoK8sApiCoreV1VolumeProjection
impl Unpin for IoK8sApiCoreV1VolumeProjection
impl UnwindSafe for IoK8sApiCoreV1VolumeProjection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more