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.
Required Methods§
Sourcefn analyze(&self, snapshot: &MemorySnapshot) -> AnalysisResult
fn analyze(&self, snapshot: &MemorySnapshot) -> AnalysisResult
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".