Enum app_dirs::AppDirsError [] [src]

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

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]

Formats the value using the given formatter.

impl From<Error> for AppDirsError
[src]

Performs the conversion.