(mut self, n: u32)
| 472 | /// Set the total number of turns in the session (backfill on session end). |
| 473 | #[must_use] |
| 474 | pub fn total_turns(mut self, n: u32) -> Self { |
| 475 | self.total_turns = Some(n); |
| 476 | self |
| 477 | } |
| 478 | |
| 479 | /// Set when the session started (Unix epoch seconds). |
| 480 | #[must_use] |