(mut self, ts: i64)
| 486 | /// Set when this turn started (Unix epoch seconds). |
| 487 | #[must_use] |
| 488 | pub fn turn_started_at(mut self, ts: i64) -> Self { |
| 489 | self.turn_started_at = ts; |
| 490 | self |
| 491 | } |
| 492 | |
| 493 | /// Set when this turn ended (Unix epoch seconds). |
| 494 | #[must_use] |
no outgoing calls
no test coverage detected