(&self, path: impl AsRef<Path>)
| 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()); |
| 103 | self.send_cache_event(event); |
| 104 | } |
| 105 | |
| 106 | #[inline] |
| 107 | fn send_cache_event(&self, event: CacheEvent) { |
nothing calls this directly
no test coverage detected