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> { ... }
}Required Methods§
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>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".