Skip to main content

memscope_rs/analysis_engine/
mod.rs

1//! Analysis Engine - Memory analysis logic
2//!
3//! This module provides the AnalysisEngine which is responsible for
4//! analyzing memory data and detecting issues like leaks, fragmentation,
5// and safety violations.
6
7pub mod analyzer;
8pub mod detector_adapter;
9pub mod engine;
10
11pub use analyzer::Analyzer;
12pub use detector_adapter::DetectorToAnalyzer;
13pub use engine::AnalysisEngine;