pub trait ReplicaSetConditionGetExt {
// Required method
fn myself(&self) -> &ReplicaSetCondition;
// Provided methods
fn last_transition_time(&self) -> Option<&Time> { ... }
fn message(&self) -> Option<&str> { ... }
fn reason(&self) -> Option<&str> { ... }
fn status(&self) -> &str { ... }
fn type(&self) -> &str { ... }
}Required Methods§
fn myself(&self) -> &ReplicaSetCondition
Provided Methods§
fn last_transition_time(&self) -> Option<&Time>
fn message(&self) -> Option<&str>
fn reason(&self) -> Option<&str>
fn status(&self) -> &str
fn type(&self) -> &str
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".