pub struct ClusterProjectedVolumeTemplateSources {
pub config_map: Option<ClusterProjectedVolumeTemplateSourcesConfigMap>,
pub downward_api: Option<ClusterProjectedVolumeTemplateSourcesDownwardApi>,
pub secret: Option<ClusterProjectedVolumeTemplateSourcesSecret>,
pub service_account_token: Option<ClusterProjectedVolumeTemplateSourcesServiceAccountToken>,
}Expand description
Projection that may be projected along with other supported volume types
Fields§
§config_map: Option<ClusterProjectedVolumeTemplateSourcesConfigMap>configMap information about the configMap data to project
downward_api: Option<ClusterProjectedVolumeTemplateSourcesDownwardApi>downwardAPI information about the downwardAPI data to project
secret: Option<ClusterProjectedVolumeTemplateSourcesSecret>secret information about the secret data to project
service_account_token: Option<ClusterProjectedVolumeTemplateSourcesServiceAccountToken>serviceAccountToken is information about the serviceAccountToken data to project
Trait Implementations§
source§impl Clone for ClusterProjectedVolumeTemplateSources
impl Clone for ClusterProjectedVolumeTemplateSources
source§fn clone(&self) -> ClusterProjectedVolumeTemplateSources
fn clone(&self) -> ClusterProjectedVolumeTemplateSources
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 Default for ClusterProjectedVolumeTemplateSources
impl Default for ClusterProjectedVolumeTemplateSources
source§fn default() -> ClusterProjectedVolumeTemplateSources
fn default() -> ClusterProjectedVolumeTemplateSources
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ClusterProjectedVolumeTemplateSources
impl<'de> Deserialize<'de> for ClusterProjectedVolumeTemplateSources
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 JsonSchema for ClusterProjectedVolumeTemplateSources
impl JsonSchema for ClusterProjectedVolumeTemplateSources
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ClusterProjectedVolumeTemplateSources
impl RefUnwindSafe for ClusterProjectedVolumeTemplateSources
impl Send for ClusterProjectedVolumeTemplateSources
impl Sync for ClusterProjectedVolumeTemplateSources
impl Unpin for ClusterProjectedVolumeTemplateSources
impl UnwindSafe for ClusterProjectedVolumeTemplateSources
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