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 { ... }
}

Required Methods§

Provided Methods§

Source

fn status(&self) -> &str

Source

fn type(&self) -> &str

Source

fn message(&self) -> Option<&str>

Source

fn reason(&self) -> Option<&str>

Source

fn last_probe_time(&self) -> Option<&Time>

Source

fn last_transition_time(&self) -> Option<&Time>

Source

fn is_true(&self) -> bool

Source

fn is_false(&self) -> bool

Source

fn is_unknown(&self) -> bool

Implementors§