Trait kube::core::ResourceExt[][src]

pub trait ResourceExt: Resource {
    fn name(&self) -> String;
fn namespace(&self) -> Option<String>;
fn resource_version(&self) -> Option<String>;
fn uid(&self) -> Option<String>;
fn labels(&self) -> &BTreeMap<String, String>;
fn labels_mut(&mut self) -> &mut BTreeMap<String, String>;
fn annotations(&self) -> &BTreeMap<String, String>;
fn annotations_mut(&mut self) -> &mut BTreeMap<String, String>;
fn owner_references(&self) -> &[OwnerReference];
fn owner_references_mut(&mut self) -> &mut Vec<OwnerReference, Global>;
fn finalizers(&self) -> &[String];
fn finalizers_mut(&mut self) -> &mut Vec<String, Global>; }
Expand description

Helper methods for resources.

Required methods

Returns the name of the resource, panicking if it is missing. Use this function if you know that name is set, for example when resource was received from the apiserver. Because of .metadata.generateName field, in other contexts name may be missing.

For non-panicking alternative, you can directly read name field on the self.meta().

The namespace the resource is in

The resource version

Unique ID (if you delete resource and then create a new resource with the same name, it will have different ID)

Returns resource labels

Provides mutable access to the labels

Returns resource annotations

Provider mutable access to the annotations

Returns resource owner references

Provides mutable access to the owner references

Returns resource finalizers

Provides mutable access to the finalizers

Implementors