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;
}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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".