(workspace_path: Option<&str>)
| 132 | } |
| 133 | |
| 134 | fn workspace_root_from_input(workspace_path: Option<&str>) -> Option<PathBuf> { |
| 135 | workspace_path |
| 136 | .filter(|path| !path.is_empty()) |
| 137 | .map(PathBuf::from) |
| 138 | } |
| 139 | |
| 140 | fn trim_workspace_path(workspace_path: Option<&str>) -> Option<String> { |
| 141 | workspace_path |
no test coverage detected