Skip to main content

market_model/order_book/
flow.rs

1//! Stub: order flow process trait and implementations.
2//!
3//! Will be implemented in a future phase.
4
5/// Stub trait for order flow generation.
6pub trait OrderFlowProcess: Send + Sync {}
7
8/// A no-op order flow implementation.
9pub struct NoFlow;
10
11impl OrderFlowProcess for NoFlow {}