| 63 | /// Time window for temporal range operations |
| 64 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 65 | pub struct TimeWindow { |
| 66 | pub start: DateTime<Utc>, |
| 67 | pub end: DateTime<Utc>, |
| 68 | } |
| 69 | |
| 70 | impl TimeWindow { |
| 71 | /// Create a new time window |
no outgoing calls
no test coverage detected