memscope-rs 0.2.3

A memory tracking library for Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Event Store Engine
//!
//! This module provides the EventStore which is responsible for storing
//! all memory events across all tracking backends. It uses a lock-free
//! queue for high-performance concurrent access.

pub mod event;
pub mod store;

pub use event::{MemoryEvent, MemoryEventType};
pub use store::{EventStore, SharedEventStore};