Trait path_absolutize::Absolutize[][src]

pub trait Absolutize {
    fn absolutize(&self) -> Result<Cow<'_, Path>>;
fn absolutize_from(&self, cwd: &Path) -> Result<Cow<'_, Path>>;
fn absolutize_virtually<P: AsRef<Path>>(
        &self,
        virtual_root: P
    ) -> Result<Cow<'_, Path>>; }
Expand description

Let Path and PathBuf have absolutize and absolutize_virtually method.

Required methods

Get an absolute path. This works even if the path does not exist.

Get an absolute path. This works even if the path does not exist. It gets the current working directory as the second argument.

Get an absolute path. This works even if the path does not exist.

Implementations on Foreign Types

Implementors