Set the current timezone for this session
(&mut self, timezone: Option<String>)
| 276 | |
| 277 | /// Set the current timezone for this session |
| 278 | pub fn set_current_timezone(&mut self, timezone: Option<String>) { |
| 279 | self.current_timezone = timezone; |
| 280 | self.update_activity(); |
| 281 | } |
| 282 | |
| 283 | /// Get the current timezone for this session |
| 284 | pub fn get_current_timezone(&self) -> Option<&String> { |
nothing calls this directly
no test coverage detected