pub trait PathExt {
// Required method
fn is_dangling_symlink(&self) -> bool;
}Expand description
Utility extensions for paths in atuin.
Required Methods§
Sourcefn is_dangling_symlink(&self) -> bool
fn is_dangling_symlink(&self) -> bool
Check whether the given path is a symlink, and a dangling one at that.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".