pub trait PathExt: Sealed {
    fn fs_err_metadata(&self) -> Result<Metadata>;
    fn fs_err_symlink_metadata(&self) -> Result<Metadata>;
    fn fs_err_canonicalize(&self) -> Result<PathBuf>;
    fn fs_err_read_link(&self) -> Result<PathBuf>;
    fn fs_err_read_dir(&self) -> Result<ReadDir>;
}
Expand description

Defines aliases on Path for fs_err functions.

This trait is sealed and can not be implemented by other crates.

Required Methods

Implementations on Foreign Types

Implementors