(&self, state: &mut H)
| 508 | |
| 509 | impl Hash for TimeWindow { |
| 510 | fn hash<H: Hasher>(&self, state: &mut H) { |
| 511 | self.start.timestamp().hash(state); |
| 512 | self.start.timestamp_subsec_nanos().hash(state); |
| 513 | self.end.timestamp().hash(state); |
| 514 | self.end.timestamp_subsec_nanos().hash(state); |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | impl Hash for TemporalValue { |