Skip to main content

apple_quant_algorithmic/timestamp/
engine.rs

1use super::Timestamp;
2
3#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
4pub struct EngineTimestamps {
5	pub gateway_recieve: Timestamp,
6	pub gateway_release: Timestamp,
7	pub match_point: Timestamp,
8}