micromegas_tracing/event/mod.rs
1//! Structure to record events in memory
2#[cfg(not(target_arch = "wasm32"))]
3mod block;
4#[cfg(not(target_arch = "wasm32"))]
5pub use block::*;
6
7#[cfg(not(target_arch = "wasm32"))]
8pub mod in_memory_sink;
9
10mod sink;
11pub use sink::*;
12
13#[cfg(not(target_arch = "wasm32"))]
14mod stream;
15#[cfg(not(target_arch = "wasm32"))]
16pub use stream::*;