Trait fs_err::PathExt

source ·
pub trait PathExt: Sealed {
    // Required methods
    fn fs_err_try_exists(&self) -> Result<bool>;
    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§

source§

impl PathExt for Path

Implementors§