pub fn watch_blocking<F>(watcher: &mut FileWatcher, callback: F)Expand description
Polls for file changes in a blocking loop, invoking callback with changed paths.
The loop is bounded by MAX_WATCH_ITERATIONS to prevent runaway
execution. Returns when the callback returns false or the
iteration limit is reached.