memscope_rs/metadata/mod.rs
1//! Metadata Engine - Centralized metadata management
2//!
3//! This module provides the MetadataEngine which is responsible for
4//! managing all metadata including variables, scopes, threads, types,
5//! and pointers across the memscope system.
6
7pub mod engine;
8pub mod registry;
9pub mod scope;
10pub mod smart_pointers;
11pub mod stack_trace;
12pub mod thread;
13
14pub use engine::MetadataEngine;