memscope-rs 0.2.3

A memory tracking library for Rust applications.
Documentation
1
2
3
4
5
6
7
//! Core memory tracking functionality - Re-exports from capture module

// Re-export everything from capture::backends::core_tracker
pub use crate::capture::backends::core_tracker::{
    collect_all_trackers_local, configure_tracking_strategy, get_registry_stats_local, get_tracker,
    has_active_trackers_local, MemoryTracker,
};