Module inotify
inotify support for working with inotify objects.
Examples
use inotify;
use io;
use MaybeUninit;
#
Structs
-
CreateFlags
IN_*for use withinotify::init. - Event An inotify event.
-
ReadFlags
IN*for use withinotify::Reader. - Reader An inotify event iterator implemented with the read syscall.
-
WatchFlags
IN*for use withinotify::add_watch.
Functions
-
add_watch
inotify_add_watch(self, path, flags)—Adds a watch to inotify. -
init
inotify_init1(flags)—Creates a new inotify object. -
remove_watch
inotify_rm_watch(self, wd)—Removes a watch from this inotify.