pub fn readdir_recursive(
    dir: &DirectoryProxy,
    timeout: Option<Duration>
) -> BoxStream<'_, Result<DirEntry, RecursiveEnumerateError>>
Expand description

Returns a Vec of all non-directory nodes and all empty directory nodes in the given directory proxy. The returned entries will not include “.”. |timeout| can be provided optionally to specify the maximum time to wait for a directory to be read.