Struct k8s_openapi::v1_7::kubernetes::pkg::api::v1::ObjectFieldSelector[][src]

pub struct ObjectFieldSelector {
    pub api_version: Option<String>,
    pub field_path: String,
}

ObjectFieldSelector selects an APIVersioned field of an object.

Fields

Version of the schema the FieldPath is written in terms of, defaults to "v1".

Path of the field to select in the specified API version.

Trait Implementations

impl Clone for ObjectFieldSelector
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ObjectFieldSelector
[src]

Formats the value using the given formatter. Read more

impl Default for ObjectFieldSelector
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ObjectFieldSelector
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations