Set the current graph for this session
(&mut self, graph_path: Option<String>)
| 248 | |
| 249 | /// Set the current graph for this session |
| 250 | pub fn set_current_graph(&mut self, graph_path: Option<String>) { |
| 251 | self.current_graph = graph_path; |
| 252 | self.update_activity(); |
| 253 | } |
| 254 | |
| 255 | /// Get the current graph for this session |
| 256 | pub fn get_current_graph(&self) -> Option<&String> { |
nothing calls this directly
no test coverage detected