Constant inotify_sys::IN_ALL_EVENTS[][src]

pub const IN_ALL_EVENTS: uint32_t = IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | IN_CLOSE_NOWRITE |
    IN_OPEN | IN_MOVED_FROM | IN_MOVED_TO | IN_CREATE | IN_DELETE |
    IN_DELETE_SELF | IN_MOVE_SELF

Event: Any event occured

This is a combination of all the other event constants:

This constant can be passed to inotify_add_watch, to register interest in any type of event.

See man page for additional details.