memscope-rs 0.2.3

A memory tracking library for Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Facade API - Unified user interface
//!
//! This module provides the MemScope facade which unifies all engines
//! into a simple, easy-to-use interface.

pub mod compat;
pub mod implementation;
pub mod macros;

pub use compat::{
    clear_all, export_json, get_global_memscope, get_memory_summary, get_top_allocations,
    get_variable_info, register_variable,
};
pub use implementation::MemScope;