pub trait ConditionGetExt {
// Required method
fn myself(&self) -> &Condition;
// Provided methods
fn type_(&self) -> &str { ... }
fn status(&self) -> &str { ... }
fn last_transition_time(&self) -> &Time { ... }
fn reason(&self) -> &str { ... }
fn message(&self) -> &str { ... }
fn observed_generation(&self) -> Option<i64> { ... }
}