memscope_rs/smart_pointers/
mod.rs

1//! Smart pointer tracking and analysis
2//!
3//! Provides enhanced tracking for Rust smart pointers including:
4//! - Reference counting analysis for Rc/Arc
5//! - Weak reference leak detection
6//! - Box allocation patterns
7//! - Smart pointer overhead calculation
8
9pub mod analyzer;
10pub mod tracker;
11
12pub use analyzer::{AnalysisResult, LeakPattern, SmartPointerAnalyzer};
13pub use tracker::{PointerInfo, PointerType, SmartPointerTracker};