[][src]Trait sit_core::path::ResolvePath

pub trait ResolvePath {
    fn resolve_dir(&self) -> Result<PathBuf, Error>;
}

Allows for directory resolution

Required Methods

Resolves to an actual directory

It will interpret common conventions for resolving a directory (so, for example, a file with a textual link in it will be resolved to the directory it points to)

Implementors

impl<T> ResolvePath for T where
    T: AsRef<Path>, 
[src]