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
15
//! Enhanced stack trace capture and analysis
//!
//! Provides high-performance stack trace collection with:
//! - Configurable depth control
//! - Symbol resolution caching
//! - Hot path optimization
//! - Thread-local caching

pub mod cache;
pub mod capture;
pub mod resolver;

pub use cache::{CacheStats, StackTraceCache};
pub use capture::{CaptureConfig, StackFrame, StackTraceCapture};
pub use resolver::{ResolvedFrame, SymbolResolver};