pub trait Metadata: Resource {
    type Ty;
    fn metadata(&self) -> &<Self as Metadata>::Ty;
fn metadata_mut(&mut self) -> &mut <Self as Metadata>::Ty; }
Expand description

A trait applied to all Kubernetes resources that have metadata.

Associated Types

The type of the metadata object.

Required methods

Gets a reference to the metadata of this resource value.

Gets a mutable reference to the metadata of this resource value.

Implementors