(&self)
| 394 | } |
| 395 | |
| 396 | fn directory(&self) -> &PathBuf { |
| 397 | self.cache_config |
| 398 | .directory() |
| 399 | .expect("CacheConfig should be validated before being passed to a WorkerThread") |
| 400 | } |
| 401 | |
| 402 | fn handle_on_cache_update(&self, path: PathBuf) { |
| 403 | trace!("handle_on_cache_update() for path: {}", path.display()); |
no test coverage detected