(mut self, ms: u64)
| 500 | /// Set the wall clock duration of this turn in milliseconds. |
| 501 | #[must_use] |
| 502 | pub fn turn_duration_ms(mut self, ms: u64) -> Self { |
| 503 | self.turn_duration_ms = ms; |
| 504 | self |
| 505 | } |
| 506 | |
| 507 | /// Set the prompt summary (first ~200 chars). |
| 508 | #[must_use] |
no outgoing calls