(&self)
| 95 | /// HistoryTimestamp: Timestamp (as int) view of this history. |
| 96 | #[getter] |
| 97 | pub fn t(&self) -> PyHistoryTimestamp { |
| 98 | PyHistoryTimestamp { |
| 99 | history_t: HistoryTimestamp::new(self.history.0.clone()), // clone the Arc, not the underlying object |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /// Access history events as UTC datetimes. |
| 104 | /// |
no test coverage detected