pub trait ComponentConditionGetExt {
// Required methods
fn status(&self) -> &str;
fn type(&self) -> &str;
fn message(&self) -> Option<&str>;
fn error(&self) -> Option<&str>;
fn is_true(&self) -> bool;
}
pub trait ComponentConditionGetExt {
// Required methods
fn status(&self) -> &str;
fn type(&self) -> &str;
fn message(&self) -> Option<&str>;
fn error(&self) -> Option<&str>;
fn is_true(&self) -> bool;
}