Struct k8s_openapi::api::core::v1::VolumeMountStatus
source · pub struct VolumeMountStatus {
pub mount_path: String,
pub name: String,
pub read_only: Option<bool>,
pub recursive_read_only: Option<String>,
}
Expand description
VolumeMountStatus shows status of volume mounts.
Fields§
§mount_path: String
MountPath corresponds to the original VolumeMount.
name: String
Name corresponds to the name of the original VolumeMount.
read_only: Option<bool>
ReadOnly corresponds to the original VolumeMount.
recursive_read_only: Option<String>
RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.
Trait Implementations§
source§impl Clone for VolumeMountStatus
impl Clone for VolumeMountStatus
source§fn clone(&self) -> VolumeMountStatus
fn clone(&self) -> VolumeMountStatus
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 VolumeMountStatus
impl Debug for VolumeMountStatus
source§impl DeepMerge for VolumeMountStatus
impl DeepMerge for VolumeMountStatus
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for VolumeMountStatus
impl Default for VolumeMountStatus
source§fn default() -> VolumeMountStatus
fn default() -> VolumeMountStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VolumeMountStatus
impl<'de> Deserialize<'de> for VolumeMountStatus
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 for VolumeMountStatus
impl PartialEq for VolumeMountStatus
source§impl Serialize for VolumeMountStatus
impl Serialize for VolumeMountStatus
impl StructuralPartialEq for VolumeMountStatus
Auto Trait Implementations§
impl Freeze for VolumeMountStatus
impl RefUnwindSafe for VolumeMountStatus
impl Send for VolumeMountStatus
impl Sync for VolumeMountStatus
impl Unpin for VolumeMountStatus
impl UnwindSafe for VolumeMountStatus
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)