Structs§
Functions§
- recursive_
wait - Wait for
name
to be available indir
. This function waits for each directory along the path and returns once it has waited on the final component in the path. If the path never appears this function will wait forever. - recursive_
wait_ and_ open - Connect to an instance of FIDL protocol hosted at
name
withindir
. This function waits for each directory to be available before it opens it. If the path never appears this function will wait forever. - recursive_
wait_ and_ open_ directory - Open the path
name
withindir
. This function waits for each directory to be available before it opens it. If the path never appears this function will wait forever. - wait_
for_ device_ with - Watches the directory for a device for which the predicate returns
Some(t)
and returnst
. - watch_
for_ files - Returns a stream that contains the paths of any existing files and
directories in
dir
and any new files or directories created after this function was invoked. These paths are relative todir
.