Struct k8s_openapi::v1_10::api::storage::v1beta1::VolumeAttachmentStatus[][src]

pub struct VolumeAttachmentStatus {
    pub attach_error: Option<VolumeError>,
    pub attached: bool,
    pub attachment_metadata: Option<BTreeMap<String, String>>,
    pub detach_error: Option<VolumeError>,
}

VolumeAttachmentStatus is the status of a VolumeAttachment request.

Fields

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.

Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

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.

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

impl Clone for VolumeAttachmentStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VolumeAttachmentStatus
[src]

Formats the value using the given formatter. Read more

impl Default for VolumeAttachmentStatus
[src]

Returns the "default value" for a type. Read more

impl PartialEq for VolumeAttachmentStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for VolumeAttachmentStatus
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for VolumeAttachmentStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations