Struct k8s_openapi::api::core::v1::ProjectedVolumeSource
source · pub struct ProjectedVolumeSource {
pub default_mode: Option<i32>,
pub sources: Option<Vec<VolumeProjection>>,
}
Expand description
Represents a projected volume source
Fields§
§default_mode: Option<i32>
defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
sources: Option<Vec<VolumeProjection>>
sources is the list of volume projections
Trait Implementations§
source§impl Clone for ProjectedVolumeSource
impl Clone for ProjectedVolumeSource
source§fn clone(&self) -> ProjectedVolumeSource
fn clone(&self) -> ProjectedVolumeSource
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 Debug for ProjectedVolumeSource
impl Debug for ProjectedVolumeSource
source§impl DeepMerge for ProjectedVolumeSource
impl DeepMerge for ProjectedVolumeSource
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ProjectedVolumeSource
impl Default for ProjectedVolumeSource
source§fn default() -> ProjectedVolumeSource
fn default() -> ProjectedVolumeSource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ProjectedVolumeSource
impl<'de> Deserialize<'de> for ProjectedVolumeSource
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 PartialEq<ProjectedVolumeSource> for ProjectedVolumeSource
impl PartialEq<ProjectedVolumeSource> for ProjectedVolumeSource
source§fn eq(&self, other: &ProjectedVolumeSource) -> bool
fn eq(&self, other: &ProjectedVolumeSource) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.