pub struct OrderBookBatchRecord {
pub orderbooks: Vec<OrderBookRecord>,
pub batch_timestamp: u64,
pub batch_id: String,
}Expand description
Batch of orderbook records for efficient processing
Groups multiple orderbook records together for batch operations. Useful for bulk serialization and processing of orderbook data.
Fields§
§orderbooks: Vec<OrderBookRecord>Vector of orderbook records in this batch
batch_timestamp: u64Timestamp when this batch was created (nanoseconds since epoch)
batch_id: StringUnique identifier for this batch
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OrderBookBatchRecord
impl RefUnwindSafe for OrderBookBatchRecord
impl Send for OrderBookBatchRecord
impl Sync for OrderBookBatchRecord
impl Unpin for OrderBookBatchRecord
impl UnwindSafe for OrderBookBatchRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more