Constant inotify_sys::IN_IGNORED
source · pub const IN_IGNORED: u32 = 0x00008000;
Expand description
Indicates that a file system watch was removed
This can occur as a result of inotify_rm_watch
, because a watched item
was deleted, the containing filesystem was unmounted, or after a
IN_ONESHOT
watch is complete.
This constant can be used to check against the mask
field in
inotify_event
.
See man page for additional details.