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
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 Clone for VolumeAttachmentStatusfn clone(&self) -> VolumeAttachmentStatus[src]
fn clone(&self) -> VolumeAttachmentStatusReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for VolumeAttachmentStatus[src]
impl Debug for VolumeAttachmentStatusfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for VolumeAttachmentStatus[src]
impl Default for VolumeAttachmentStatusfn default() -> VolumeAttachmentStatus[src]
fn default() -> VolumeAttachmentStatusReturns the "default value" for a type. Read more
impl PartialEq for VolumeAttachmentStatus[src]
impl PartialEq for VolumeAttachmentStatusfn eq(&self, other: &VolumeAttachmentStatus) -> bool[src]
fn eq(&self, other: &VolumeAttachmentStatus) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &VolumeAttachmentStatus) -> bool[src]
fn ne(&self, other: &VolumeAttachmentStatus) -> boolThis method tests for !=.
impl<'de> Deserialize<'de> for VolumeAttachmentStatus[src]
impl<'de> Deserialize<'de> for VolumeAttachmentStatusfn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>, [src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
impl Serialize for VolumeAttachmentStatus[src]
impl Serialize for VolumeAttachmentStatusAuto Trait Implementations
impl Send for VolumeAttachmentStatus
impl Send for VolumeAttachmentStatusimpl Sync for VolumeAttachmentStatus
impl Sync for VolumeAttachmentStatus