[][src]Constant inotify_sys::IN_ALL_EVENTS

pub const IN_ALL_EVENTS: u32 = 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; // 0_x00_000_fffu32

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.