(mut self, n: u32)
| 465 | /// Set the turn number (1-indexed). |
| 466 | #[must_use] |
| 467 | pub fn turn_number(mut self, n: u32) -> Self { |
| 468 | self.turn_number = n; |
| 469 | self |
| 470 | } |
| 471 | |
| 472 | /// Set the total number of turns in the session (backfill on session end). |
| 473 | #[must_use] |
no outgoing calls