memscope-rs 0.2.0

A memory tracking library for Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Analysis Engine - Memory analysis logic
//!
//! This module provides the AnalysisEngine which is responsible for
//! analyzing memory data and detecting issues like leaks, fragmentation,
// and safety violations.

pub mod analyzer;
pub mod detector_adapter;
pub mod engine;

pub use analyzer::Analyzer;
pub use detector_adapter::DetectorToAnalyzer;
pub use engine::AnalysisEngine;