Module tracking

Module tracking 

Source
Expand description

Memory allocation tracking statistics and monitoring Memory tracking module

Provides high-performance, reliable memory allocation tracking features, including:

  • Tracking statistics and quality monitoring
  • Bounded memory management
  • Intelligent size estimation

§Examples

use memscope_rs::tracking::TrackingStats;
use memscope_rs::memory::BoundedHistory;

let stats = TrackingStats::new();
let history: BoundedHistory<String> = BoundedHistory::new();

Re-exports§

pub use stats::DetailedStats;
pub use stats::TrackingStats;

Modules§

stats