market_model/order_book/mod.rs
1//! Order flow and order book simulation.
2//!
3//! This module provides the `OrderFlowProcess` trait and `OrderBookSimulator`
4//! for generating synthetic L1/L2/L3 order book data.
5//!
6//! Not yet implemented -- stub for future extension.
7
8/// Placeholder for order flow generation.
9pub mod flow;
10
11/// Placeholder for order book state machines (L1, L2, L3).
12pub mod book;