(mut self, ts: i64)
| 493 | /// Set when this turn ended (Unix epoch seconds). |
| 494 | #[must_use] |
| 495 | pub fn turn_ended_at(mut self, ts: i64) -> Self { |
| 496 | self.turn_ended_at = ts; |
| 497 | self |
| 498 | } |
| 499 | |
| 500 | /// Set the wall clock duration of this turn in milliseconds. |
| 501 | #[must_use] |
no outgoing calls
no test coverage detected