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

pub struct TopologySelectorTerm {
    pub match_label_expressions: Option<Vec<TopologySelectorLabelRequirement>>,
}

A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.

Fields

A list of topology selector requirements by labels.

Trait Implementations

impl Clone for TopologySelectorTerm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TopologySelectorTerm
[src]

Formats the value using the given formatter. Read more

impl Default for TopologySelectorTerm
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for TopologySelectorTerm
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations