pub trait InconsistencyDetectionAlgorithm: Send + Sync {
// Required methods
fn detect_inconsistencies(&self) -> Result<Vec<Inconsistency>>;
fn get_algorithm_name(&self) -> &str;
}Expand description
Trait for inconsistency detection
Required Methods§
Sourcefn detect_inconsistencies(&self) -> Result<Vec<Inconsistency>>
fn detect_inconsistencies(&self) -> Result<Vec<Inconsistency>>
Detect inconsistencies in the system
Sourcefn get_algorithm_name(&self) -> &str
fn get_algorithm_name(&self) -> &str
Get detection algorithm name