#[repr(u16)]
#[non_exhaustive]
pub enum BaseDirectory {
Show 20 variants Audio, Cache, Config, Data, LocalData, Desktop, Document, Download, Executable, Font, Home, Picture, Public, Runtime, Template, Video, Resource, App, Log, Temp,
}
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

The default App config directory. Resolves to BaseDirectory::Config.

Log

The 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.

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.

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.