pub trait Analyzer: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn analyze(&self, snapshot: &MemorySnapshot) -> AnalysisResult;
}Expand description
Analyzer trait for pluggable analysis modules
All analyzers must implement this trait to be used with the AnalysisEngine.