memscope_rs/stack_trace/
mod.rs

1//! Enhanced stack trace capture and analysis
2//!
3//! Provides high-performance stack trace collection with:
4//! - Configurable depth control
5//! - Symbol resolution caching
6//! - Hot path optimization
7//! - Thread-local caching
8
9pub mod cache;
10pub mod capture;
11pub mod resolver;
12
13pub use cache::{CacheStats, StackTraceCache};
14pub use capture::{CaptureConfig, StackFrame, StackTraceCapture};
15pub use resolver::{ResolvedFrame, SymbolResolver};