(cache_path: String)
| 352 | } |
| 353 | |
| 354 | fn write_cache_path(cache_path: String) { |
| 355 | CACHE_PATH.with(|value| { |
| 356 | *value.borrow_mut() = cache_path; |
| 357 | }); |
| 358 | } |
| 359 | |
| 360 | fn read_cache_path() -> String { |
| 361 | let mut cache_path: String = path_to_string(&default_cache_folder()); |
no test coverage detected