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

pub struct NodeConfigSource {
    pub config_map: Option<ConfigMapNodeConfigSource>,
}

NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.

Fields

ConfigMap is a reference to a Node's ConfigMap

Trait Implementations

impl Clone for NodeConfigSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NodeConfigSource
[src]

Formats the value using the given formatter. Read more

impl Default for NodeConfigSource
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NodeConfigSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations