(&self, path: impl AsRef<Path>)
| 94 | } |
| 95 | |
| 96 | pub(super) fn on_cache_get_async(&self, path: impl AsRef<Path>) { |
| 97 | let event = CacheEvent::OnCacheGet(path.as_ref().to_path_buf()); |
| 98 | self.send_cache_event(event); |
| 99 | } |
| 100 | |
| 101 | pub(super) fn on_cache_update_async(&self, path: impl AsRef<Path>) { |
| 102 | let event = CacheEvent::OnCacheUpdate(path.as_ref().to_path_buf()); |
nothing calls this directly
no test coverage detected