Struct k8s_openapi::v1_10::api::core::v1::AttachedVolume[][src]

pub struct AttachedVolume {
    pub device_path: String,
    pub name: String,
}

AttachedVolume describes a volume attached to a node

Fields

DevicePath represents the device path where the volume should be available

Name of the attached volume

Trait Implementations

impl Clone for AttachedVolume
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AttachedVolume
[src]

Formats the value using the given formatter. Read more

impl Default for AttachedVolume
[src]

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

impl PartialEq for AttachedVolume
[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 AttachedVolume
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for AttachedVolume
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations