Enum hotwatch::Event[][src]

pub enum Event {
    NoticeWrite(PathBuf),
    NoticeRemove(PathBuf),
    Create(PathBuf),
    Write(PathBuf),
    Chmod(PathBuf),
    Remove(PathBuf),
    Rename(PathBufPathBuf),
    Rescan,
    Error(ErrorOption<PathBuf>),
}

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

Variants

NoticeWrite is emitted immediately after the first write event for the path.

If you are reading from that file, you should probably close it immediately and discard all data you read from it.

NoticeRemove is emitted immediately after a remove or rename event for the path.

The file will continue to exist until its last file handle is closed.

Create is emitted when a file or directory has been created and no events were detected for the path within the specified time frame.

Create events have a higher priority than Write and Chmod. These events will not be emitted if they are detected before the Create event has been emitted.

Write is emitted when a file has been written to and no events were detected for the path within the specified time frame.

Write events have a higher priority than Chmod. Chmod will not be emitted if it's detected before the Write event has been emitted.

Upon receiving a Create event for a directory, it is necessary to scan the newly created directory for contents. The directory can contain files or directories if those contents were created before the directory could be watched, or if the directory was moved into the watched directory.

Chmod is emitted when attributes have been changed and no events were detected for the path within the specified time frame.

Remove is emitted when a file or directory has been removed and no events were detected for the path within the specified time frame.

Rename is emitted when a file or directory has been moved within a watched directory and no events were detected for the new path within the specified time frame.

The first path contains the source, the second path the destination.

Rescan is emitted immediately after a problem has been detected that makes it necessary to re-scan the watched directories.

Error is emitted immediately after a error has been detected.

This event may contain a path for which the error was detected.

Trait Implementations

impl Debug for DebouncedEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq<DebouncedEvent> for DebouncedEvent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations