Trait drogue_client::meta::v1::CommonMetadata[][src]

pub trait CommonMetadata {
    fn name(&self) -> &String;
fn uid(&self) -> &String;
fn labels(&self) -> &HashMap<String, String>;
fn annotations(&self) -> &HashMap<String, String>;
fn creation_timestamp(&self) -> &DateTime<Utc>;
fn resource_version(&self) -> &String;
fn generation(&self) -> u64;
fn deletion_timestamp(&self) -> &Option<DateTime<Utc>>;
fn finalizers(&self) -> &Vec<String>; }
Expand description

A trait for immutable access to the common parts of the metadata structures.

Required methods

Implementors