Returns `true` if the session has an active turn.
(&self)
| 375 | |
| 376 | /// Returns `true` if the session has an active turn. |
| 377 | pub fn is_turn_active(&self) -> bool { |
| 378 | self.phase.is_active() |
| 379 | } |
| 380 | |
| 381 | /// Returns the session duration as a human-readable string. |
| 382 | pub fn duration_display(&self) -> String { |
no test coverage detected