pub trait FileTypeExt {
    fn is_symlink_dir(&self) -> bool;
    fn is_symlink_file(&self) -> bool;
}
Windows-specific extensions to fs::FileType.
On Windows, a symbolic link knows whether it is a file or directory.
fn is_symlink_dir(&self) -> boolReturns true if this file type is a symbolic link that is also a directory.
fn is_symlink_file(&self) -> boolReturns true if this file type is a symbolic link that is also a file.
impl FileTypeExt for FileType[src]
fn is_symlink_dir(&self) -> bool[src]
fn is_symlink_file(&self) -> bool[src]
    © 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
    https://doc.rust-lang.org/std/os/windows/fs/trait.FileTypeExt.html