pub trait ConditionType: Clone + Copy + Default + Debug + PartialEq where
    Self: 'static, 
{ fn happy() -> Self; fn dependents() -> &'static [Self]Notable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]; fn is_terminal(&self) -> bool { ... } fn severity(&self) -> ConditionSeverity { ... } }
Expand description

Enums that implement ConditionType can be used to differentiate Condition and describe the state of the resource.

Required Methods

The top-level variant that determines overall readiness of the resource.

Variants that must be true to consider the happy condition true.

Provided Methods

Whether the ConditionType determines happiness.

A Condition severity defaults to whether it determines overall resource readiness or not.

Implementors