[][src]Constant inotify_sys::IN_MOVE

pub const IN_MOVE: u32 = IN_MOVED_FROM | IN_MOVED_TO; // 192u32

Event: File or directory within watched directory was moved

This is a combination of IN_MOVED_FROM and IN_MOVED_TO.

This constant can be passed to inotify_add_watch, to register interest in this type of event, or it can be used to check (via inotify_event's mask field) whether an event is of this type.

See man page for additional details.