(mut self, ts: i64)
| 479 | /// Set when the session started (Unix epoch seconds). |
| 480 | #[must_use] |
| 481 | pub fn session_started_at(mut self, ts: i64) -> Self { |
| 482 | self.session_started_at = ts; |
| 483 | self |
| 484 | } |
| 485 | |
| 486 | /// Set when this turn started (Unix epoch seconds). |
| 487 | #[must_use] |
no outgoing calls
no test coverage detected