Struct k8s_openapi::api::core::v1::ProjectedVolumeSource [−][src]
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>
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>>
list of volume projections
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ProjectedVolumeSource
impl Send for ProjectedVolumeSource
impl Sync for ProjectedVolumeSource
impl Unpin for ProjectedVolumeSource
impl UnwindSafe for ProjectedVolumeSource
Blanket Implementations
Mutably borrows from an owned value. Read more