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

pub struct FlockerVolumeSource {
    pub dataset_name: Option<String>,
    pub dataset_uuid: Option<String>,
}

Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.

Fields

Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated

UUID of the dataset. This is unique identifier of a Flocker dataset

Trait Implementations

impl Clone for FlockerVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FlockerVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for FlockerVolumeSource
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for FlockerVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations