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

pub struct ScopeSelector {
    pub match_expressions: Option<Vec<ScopedResourceSelectorRequirement>>,
}

A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.

Fields

A list of scope selector requirements by scope of the resources.

Trait Implementations

impl Clone for ScopeSelector
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ScopeSelector
[src]

Formats the value using the given formatter. Read more

impl Default for ScopeSelector
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ScopeSelector
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations