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
//! Smart pointer tracking and analysis
//!
//! Provides enhanced tracking for Rust smart pointers including:
//! - Reference counting analysis for Rc/Arc
//! - Weak reference leak detection
//! - Box allocation patterns
//! - Smart pointer overhead calculation

pub mod analyzer;
pub mod tracker;

pub use analyzer::{AnalysisResult, LeakPattern, SmartPointerAnalyzer};
pub use tracker::{PointerInfo, PointerType, SmartPointerTracker};