Trait cap_std::fs::FileTypeExt
source · pub trait FileTypeExt {
// Required methods
fn is_symlink_dir(&self) -> bool;
fn is_symlink_file(&self) -> bool;
}Available on Unix, or
target_os="vxworks", or Windows and windows_file_type_ext only.Expand description
Windows-specific extensions for FileType.
This corresponds to std::os::windows::fs::FileTypeExt.
Required Methods§
sourcefn is_symlink_dir(&self) -> bool
fn is_symlink_dir(&self) -> bool
Returns true if this file type is a symbolic link that is also a
directory.
sourcefn is_symlink_file(&self) -> bool
fn is_symlink_file(&self) -> bool
Returns true if this file type is a symbolic link that is also a
file.
Implementors§
impl FileTypeExt for FileType
Available on Windows and
windows_file_type_ext only.