| 75 | /// Convenience struct representing all data of interest from a comparison read between a clock bound client clock and the PHC. |
| 76 | #[allow(dead_code)] |
| 77 | #[derive(Debug, serde::Serialize)] |
| 78 | pub struct ClockBoundClientRefComparison { |
| 79 | clock_pre: Result<TimeAndBoundAndStatus, ClockReadError>, |
| 80 | counter_pre: TscCount, |
| 81 | ref_clock: Result<TimeAndBoundAndStatus, ClockReadError>, |
| 82 | exchange_metadata: Option<ExchangeMetadata>, |
| 83 | counter_post: TscCount, |
| 84 | clock_post: Result<TimeAndBoundAndStatus, ClockReadError>, |
| 85 | } |
| 86 | |
| 87 | #[derive(Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected