memscope_rs/tracking/
mod.rs

1//! Memory tracking module
2//!
3//! Provides high-performance, reliable memory allocation tracking features, including:
4//! - Tracking statistics and quality monitoring
5//! - Bounded memory management
6//! - Intelligent size estimation
7//!
8//! # Examples
9//!
10//! ```rust
11//! use memscope_rs::tracking::TrackingStats;
12//! use memscope_rs::memory::BoundedHistory;
13//!
14//! let stats = TrackingStats::new();
15//! let history: BoundedHistory<String> = BoundedHistory::new();
16//! ```
17
18pub mod stats;
19
20pub use stats::{DetailedStats, TrackingStats};