Returns `true` if the session has an active turn.
(&self)
| 347 | |
| 348 | /// Returns `true` if the session has an active turn. |
| 349 | pub fn is_turn_active(&self) -> bool { |
| 350 | self.phase.is_active() |
| 351 | } |
| 352 | |
| 353 | /// Returns the session duration as a human-readable string. |
| 354 | pub fn duration_display(&self) -> String { |
no test coverage detected