[][src]Crate hotwatch

hotwatch is a Rust library for comfortably watching and handling file changes. It's a thin convenience wrapper over notify, allowing you to easily set callbacks for each path you want to watch.

Watching is done on a separate thread so you don't have to worry about blocking. All handlers are run on that thread as well, so keep that in mind when attempting to access outside data from within a handler.

Only the latest stable version of Rust is supported.

Re-exports

pub use notify;

Structs

Hotwatch

Enums

Error
Event

Event delivered when action occurs on a watched path in debounced mode