memscope-rs 0.2.0

A memory tracking library for Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Metadata Engine - Centralized metadata management
//!
//! This module provides the MetadataEngine which is responsible for
//! managing all metadata including variables, scopes, threads, types,
//! and pointers across the memscope system.

pub mod engine;
pub mod registry;
pub mod scope;
pub mod smart_pointers;
pub mod stack_trace;
pub mod thread;

pub use engine::MetadataEngine;