Enum amethyst_config::ConfigError [] [src]

pub enum ConfigError {
    File(Error),
    Parser(DeError),
    Serializer(SerError),
    Extension(PathBuf),
}

Error related to anything that manages/creates configurations as well as "workspace"-related things.

Variants

Forward to the std::io::Error error.

Errors related to serde's parsing of configuration files.

Occurs if a value is ill-formed during serialization (like a poisoned mutex).

Related to the path of the file.

Trait Implementations

impl Debug for ConfigError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for ConfigError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for ConfigError
[src]

[src]

Performs the conversion.

impl From<DeError> for ConfigError
[src]

[src]

Performs the conversion.

impl From<SerError> for ConfigError
[src]

[src]

Performs the conversion.

impl Error for ConfigError
[src]

[src]

A short description of the error. Read more

[src]

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

Auto Trait Implementations

impl Send for ConfigError

impl Sync for ConfigError