Enum app_dirs::AppDirsError [] [src]

pub enum AppDirsError {
    Io(Error),
    NotSupported,
    InvalidAppInfo,
}

Error type for any app_dirs operation.

Variants

An I/O error occurred during the operation.

App-specific directories are not properly supported by the system (e.g. required environment variables don't exist).

App info given to this library was invalid (e.g. app name or author were empty).

Trait Implementations

impl Debug for AppDirsError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for AppDirsError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for AppDirsError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<Error> for AppDirsError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for AppDirsError

impl Sync for AppDirsError