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

pub struct NodeSelectorTerm {
    pub match_expressions: Option<Vec<NodeSelectorRequirement>>,
    pub match_fields: Option<Vec<NodeSelectorRequirement>>,
}

A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.

Fields

A list of node selector requirements by node's labels.

A list of node selector requirements by node's fields.

Trait Implementations

impl Clone for NodeSelectorTerm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NodeSelectorTerm
[src]

Formats the value using the given formatter. Read more

impl Default for NodeSelectorTerm
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NodeSelectorTerm
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations