Trait PodConditionGetExt
Source pub trait PodConditionGetExt {
// Required method
fn myself(&self) -> &PodCondition;
// Provided methods
fn status(&self) -> &str { ... }
fn type(&self) -> &str { ... }
fn message(&self) -> Option<&str> { ... }
fn reason(&self) -> Option<&str> { ... }
fn last_probe_time(&self) -> Option<&Time> { ... }
fn last_transition_time(&self) -> Option<&Time> { ... }
fn is_true(&self) -> bool { ... }
fn is_false(&self) -> bool { ... }
fn is_unknown(&self) -> bool { ... }
}