Struct k8s_openapi::api::core::v1::PersistentVolumeStatus
source · pub struct PersistentVolumeStatus {
pub last_phase_transition_time: Option<Time>,
pub message: Option<String>,
pub phase: Option<String>,
pub reason: Option<String>,
}
Expand description
PersistentVolumeStatus is the current status of a persistent volume.
Fields§
§last_phase_transition_time: Option<Time>
lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions.
message: Option<String>
message is a human-readable message indicating details about why the volume is in this state.
phase: Option<String>
phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase
reason: Option<String>
reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.
Trait Implementations§
source§impl Clone for PersistentVolumeStatus
impl Clone for PersistentVolumeStatus
source§fn clone(&self) -> PersistentVolumeStatus
fn clone(&self) -> PersistentVolumeStatus
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 PersistentVolumeStatus
impl Debug for PersistentVolumeStatus
source§impl DeepMerge for PersistentVolumeStatus
impl DeepMerge for PersistentVolumeStatus
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PersistentVolumeStatus
impl Default for PersistentVolumeStatus
source§fn default() -> PersistentVolumeStatus
fn default() -> PersistentVolumeStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PersistentVolumeStatus
impl<'de> Deserialize<'de> for PersistentVolumeStatus
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 PersistentVolumeStatus
impl PartialEq for PersistentVolumeStatus
source§impl Serialize for PersistentVolumeStatus
impl Serialize for PersistentVolumeStatus
impl StructuralPartialEq for PersistentVolumeStatus
Auto Trait Implementations§
impl Freeze for PersistentVolumeStatus
impl RefUnwindSafe for PersistentVolumeStatus
impl Send for PersistentVolumeStatus
impl Sync for PersistentVolumeStatus
impl Unpin for PersistentVolumeStatus
impl UnwindSafe for PersistentVolumeStatus
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
)