pub type SimdOrderBook64 = SimdOrderBook<64>;Expand description
Type alias for a SIMD order book with 64-level depth.
Aliased Type§
pub struct SimdOrderBook64 {
pub symbol: SmartString<LazyCompact>,
pub exchange_timestamp_ns: u64,
pub system_timestamp_ns: u64,
pub bids: SimdPriceLevels,
pub asks: SimdPriceLevels,
}Fields§
§symbol: SmartString<LazyCompact>Trading symbol for the order book (e.g., “BTC-USDT”)
exchange_timestamp_ns: u64Exchange-provided timestamp in nanoseconds
system_timestamp_ns: u64System timestamp in nanoseconds for latency measurement
bids: SimdPriceLevelsSIMD-aligned bid levels for high-performance analytics
asks: SimdPriceLevelsSIMD-aligned ask levels for high-performance analytics