[][src]Trait path_absolutize::Absolutize

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

Let Path and PathBuf have absolutize and absolutize_virtually method.

Required methods

fn absolutize(&self) -> Result<Cow<Path>>

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

fn absolutize_virtually<P: AsRef<Path>>(
    &self,
    virtual_root: P
) -> Result<Cow<Path>>

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

Loading content...

Implementations on Foreign Types

impl Absolutize for Path[src]

impl Absolutize for PathBuf[src]

Loading content...

Implementors

Loading content...