[][src]Struct k8s_openapi::api::storage::v1::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 PartialEq<VolumeAttachmentStatus> for VolumeAttachmentStatus[src]

impl Default for VolumeAttachmentStatus[src]

impl Clone for VolumeAttachmentStatus[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VolumeAttachmentStatus[src]

impl Serialize for VolumeAttachmentStatus[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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