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
sourceimpl Clone for ProjectedVolumeSource
impl Clone for ProjectedVolumeSource
sourcefn clone(&self) -> ProjectedVolumeSource
fn clone(&self) -> ProjectedVolumeSource
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ProjectedVolumeSource
impl Debug for ProjectedVolumeSource
sourceimpl Default for ProjectedVolumeSource
impl Default for ProjectedVolumeSource
sourcefn default() -> ProjectedVolumeSource
fn default() -> ProjectedVolumeSource
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ProjectedVolumeSource
impl<'de> Deserialize<'de> for ProjectedVolumeSource
sourcefn 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
sourceimpl PartialEq<ProjectedVolumeSource> for ProjectedVolumeSource
impl PartialEq<ProjectedVolumeSource> for ProjectedVolumeSource
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ProjectedVolumeSource) -> bool
fn ne(&self, other: &ProjectedVolumeSource) -> bool
This method tests for !=
.
sourceimpl Serialize for ProjectedVolumeSource
impl Serialize for ProjectedVolumeSource
impl StructuralPartialEq for ProjectedVolumeSource
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more