pub trait WalkerDirEntry: Send {
// Required methods
fn name(&self) -> &str;
fn is_dir(&self) -> bool;
fn is_file(&self) -> bool;
fn is_symlink(&self) -> bool;
}Expand description
A single entry returned by WalkerFs::list_dir.
Required Methods§
Sourcefn is_symlink(&self) -> bool
fn is_symlink(&self) -> bool
True if this entry is a symbolic link.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".