pub trait Fhs {
// Required methods
fn fhs(&self) -> FullProjectDirs;
fn fhs_local(&self) -> FullProjectDirs;
}
Expand description
Get linux-style FullProjectDirs
for the current system. Follows FHS standard.
Required Methods§
Sourcefn fhs(&self) -> FullProjectDirs
fn fhs(&self) -> FullProjectDirs
Get standard project directories. Assumes that files can be shared across the system (ex. using nfs)
Sourcefn fhs_local(&self) -> FullProjectDirs
fn fhs_local(&self) -> FullProjectDirs
Get local project directories. Assumes that files are not shared across the system