rusty_feeder/exchange/bybit/futures/data/
mod.rs

1//! Data structures for Bybit Futures market data
2//!
3//! This module contains types for handling Bybit Futures WebSocket and REST API data,
4//! optimized for high-performance processing with minimal allocations.
5
6pub mod orderbook;
7pub mod trade;
8
9pub use orderbook::OrderbookResponse;
10pub use trade::TradeResponse as MarketTradeResponse;