pub trait AppEnv {
Show 13 methods
// Required methods
fn app_home(&self) -> &Path ⓘ;
fn app_config(&self) -> PathBuf ⓘ;
fn app_data(&self) -> PathBuf ⓘ;
fn app_cache(&self) -> PathBuf ⓘ;
fn app_state(&self) -> Option<PathBuf> ⓘ;
fn app_runtime(&self) -> Option<PathBuf> ⓘ;
// Provided methods
fn app_in_config(&self, append: &Path) -> PathBuf ⓘ { ... }
fn app_in_data(&self, append: &Path) -> PathBuf ⓘ { ... }
fn app_in_cache(&self, append: &Path) -> PathBuf ⓘ { ... }
fn app_in_state(&self, append: &Path) -> Option<PathBuf> ⓘ { ... }
fn app_in_runtime(&self, append: &Path) -> Option<PathBuf> ⓘ { ... }
fn app_temp(&self) -> PathBuf ⓘ { ... }
fn app_in_temp(&self, append: &Path) -> PathBuf ⓘ { ... }
}
Available on crate feature
std
only.Expand description
Required Methods§
Sourcefn app_config(&self) -> PathBuf ⓘ
fn app_config(&self) -> PathBuf ⓘ
Gets the configuration directory.
Sourcefn app_runtime(&self) -> Option<PathBuf> ⓘ
fn app_runtime(&self) -> Option<PathBuf> ⓘ
Gets the runtime directory.
Currently, only the Xdg
& AppUnix
environments support this.
Note: The XDG Base Directory Specification places additional requirements on this directory related to ownership, permissions, and persistence. This implementation does not check those requirements.
Provided Methods§
Sourcefn app_in_config(&self, append: &Path) -> PathBuf ⓘ
fn app_in_config(&self, append: &Path) -> PathBuf ⓘ
Constructs a path inside your application’s configuration directory.
Sourcefn app_in_data(&self, append: &Path) -> PathBuf ⓘ
fn app_in_data(&self, append: &Path) -> PathBuf ⓘ
Constructs a path inside your application’s data directory.
Sourcefn app_in_cache(&self, append: &Path) -> PathBuf ⓘ
fn app_in_cache(&self, append: &Path) -> PathBuf ⓘ
Constructs a path inside your application’s cache directory.
Sourcefn app_temp(&self) -> PathBuf ⓘ
fn app_temp(&self) -> PathBuf ⓘ
Gets the temporary directory.
Uses the system’s temporary directory if available. Falls back to the application cache directory if the temporary directory is unsuitable.
Sourcefn app_in_temp(&self, append: &Path) -> PathBuf ⓘ
fn app_in_temp(&self, append: &Path) -> PathBuf ⓘ
Constructs a path inside the temporary directory.