#[repr(u16)]
#[non_exhaustive]
pub enum BaseDirectory {
Show 25 variants Audio, Cache, Config, Data, LocalData, Desktop, Document, Download, Executable, Font, Home, Picture, Public, Runtime, Template, Video, Resource, App, Log, Temp, AppConfig, AppData, AppLocalData, AppCache, AppLog,
}
Expand description

A base directory to be used in resolve_path.

The base directory is the optional root of a file system operation. If informed by the API call, all paths will be relative to the path of the given directory.

For more information, check the dirs_next documentation.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Audio

The Audio directory.

§

Cache

The Cache directory.

§

Config

The Config directory.

§

Data

The Data directory.

§

LocalData

The LocalData directory.

§

Desktop

The Desktop directory.

§

Document

The Document directory.

§

Download

The Download directory.

§

Executable

The Executable directory.

§

Font

The Font directory.

§

Home

The Home directory.

§

Picture

The Picture directory.

§

Public

The Public directory.

§

Runtime

The Runtime directory.

§

Template

The Template directory.

§

Video

The Video directory.

§

Resource

The Resource directory.

§

App

👎Deprecated since 1.2.0: Will be removed in 2.0.0. Use BaseDirectory::AppConfig or BaseDirectory::AppData` instead.

The default app config directory. Resolves to BaseDirectory::Config/{bundle_identifier}.

§

Log

👎Deprecated since 1.2.0: Will be removed in 2.0.0. Use BaseDirectory::AppLog instead.

The default app log directory. Resolves to BaseDirectory::Home/Library/Logs/{bundle_identifier} on macOS and BaseDirectory::Config/{bundle_identifier}/logs on linux and Windows.

§

Temp

A temporary directory. Resolves to temp_dir.

§

AppConfig

The default app config directory. Resolves to BaseDirectory::Config/{bundle_identifier}.

§

AppData

The default app data directory. Resolves to BaseDirectory::Data/{bundle_identifier}.

§

AppLocalData

The default app local data directory. Resolves to BaseDirectory::LocalData/{bundle_identifier}.

§

AppCache

The default app cache directory. Resolves to BaseDirectory::Cache/{bundle_identifier}.

§

AppLog

The default app log directory. Resolves to BaseDirectory::Home/Library/Logs/{bundle_identifier} on macOS and BaseDirectory::Config/{bundle_identifier}/logs on linux and Windows.

Implementations§

Gets the variable that represents this BaseDirectory for string paths.

Gets the BaseDirectory associated with the given variable, or None if the variable doesn’t match any.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Derives an instance of Self from the CommandItem. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more