pub fn recursive_read_dir<P: AsRef<Path>>(
    dir: P
) -> Result<impl Iterator<Item = PathBuf>>
Expand description

Reads the directory recursively without any filter.

Beaware of the risks of traversing a directory without any filter, like infinite symlink recursion.