Struct k8s_openapi_ext::storagev1::VolumeAttachmentStatus
source · [−]pub struct VolumeAttachmentStatus {
pub attach_error: Option<VolumeError>,
pub attached: bool,
pub attachment_metadata: Option<BTreeMap<String, String, Global>>,
pub detach_error: Option<VolumeError>,
}
Expand description
VolumeAttachmentStatus is the status of a VolumeAttachment request.
Fields
attach_error: Option<VolumeError>
The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
attached: bool
Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
attachment_metadata: Option<BTreeMap<String, String, Global>>
Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
detach_error: Option<VolumeError>
The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.
Trait Implementations
sourceimpl Clone for VolumeAttachmentStatus
impl Clone for VolumeAttachmentStatus
sourcefn clone(&self) -> VolumeAttachmentStatus
fn clone(&self) -> VolumeAttachmentStatus
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for VolumeAttachmentStatus
impl Debug for VolumeAttachmentStatus
sourceimpl DeepMerge for VolumeAttachmentStatus
impl DeepMerge for VolumeAttachmentStatus
sourcefn merge_from(&mut self, other: VolumeAttachmentStatus)
fn merge_from(&mut self, other: VolumeAttachmentStatus)
other
into self
.