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

pub struct LocalObjectReference {
    pub name: Option<String>,
}

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

Fields

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Trait Implementations

impl Clone for LocalObjectReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LocalObjectReference
[src]

Formats the value using the given formatter. Read more

impl Default for LocalObjectReference
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for LocalObjectReference
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations