(&self)
| 63 | } |
| 64 | |
| 65 | pub fn workspace_path_string(&self) -> String { |
| 66 | self.workspace_path_buf().to_string_lossy().to_string() |
| 67 | } |
| 68 | |
| 69 | pub async fn set_workspace_path(&self, workspace_path: Option<PathBuf>) { |
| 70 | let mut guard = self.workspace_path.lock().await; |
no test coverage detected