(cache_path: String)
| 294 | } |
| 295 | |
| 296 | fn write_cache_path(cache_path: String) { |
| 297 | CACHE_PATH.with(|value| { |
| 298 | *value.borrow_mut() = cache_path; |
| 299 | }); |
| 300 | } |
| 301 | |
| 302 | fn read_cache_path() -> String { |
| 303 | let mut cache_path: String = path_to_string(&default_cache_folder()); |
no test coverage detected