pub trait PathEx {
    fn to_config_path(&self) -> PathBuf;
    fn to_path(&self) -> PathBuf;
    fn get_content(&self) -> String;
}

Required Methods

Implementations on Foreign Types

Implementors