[][src]Struct k8s_openapi::api::storage::v1alpha1::VolumeAttachmentStatus

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

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>>

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

impl Clone for VolumeAttachmentStatus[src]

impl Debug for VolumeAttachmentStatus[src]

impl Default for VolumeAttachmentStatus[src]

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

impl PartialEq<VolumeAttachmentStatus> for VolumeAttachmentStatus[src]

impl Serialize for VolumeAttachmentStatus[src]

impl StructuralPartialEq for VolumeAttachmentStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.