Struct k8s_openapi::v1_11::api::core::v1::HostPathVolumeSource[][src]

pub struct HostPathVolumeSource {
    pub path: String,
    pub type_: Option<String>,
}

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

Fields

Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

Trait Implementations

impl Clone for HostPathVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HostPathVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for HostPathVolumeSource
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for HostPathVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations