Enum config::ConfigError [] [src]

pub enum ConfigError {
    Frozen,
    NotFound(String),
    PathParse(ErrorKind),
    FileParse {
        uri: Option<String>,
        cause: Box<Error + Send + Sync>,
    },
    Type {
        origin: Option<String>,
        unexpected: Unexpected,
        expected: &'static str,
        key: Option<String>,
    },
    Message(String),
    Foreign(Box<Error + Send + Sync>),
}

Represents all possible errors that can occur when working with configuration.

Variants

Configuration is frozen and no further mutations can be made.

Configuration property was not found

Configuration path could not be parsed.

Configuration could not be parsed from file.

Fields of FileParse

The URI used to access the file (if not loaded from a string). Example: /path/to/config.json

The captured error from attempting to parse the file in its desired format. This is the actual error object from the library used for the parsing.

Value could not be converted into the requested type.

Fields of Type

The URI that references the source that the value came from. Example: /path/to/config.json or Environment or etcd://localhost

What we found when parsing the value

What was expected when parsing the value

The key in the configuration hash of this value (if available where the error is generated).

Custom message

Unadorned error from a foreign origin.

Trait Implementations

impl Debug for ConfigError
[src]

Formats the value using the given formatter.

impl Display for ConfigError
[src]

Formats the value using the given formatter. Read more

impl Error for ConfigError
[src]

A short description of the error. Read more

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

impl Error for ConfigError
[src]

Raised when there is general error when deserializing a type. Read more

Raised when a Deserialize receives a type different from what it was expecting. Read more

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more

Raised when a Deserialize enum type received a variant with an unrecognized name. Read more

Raised when a Deserialize struct type received a field with an unrecognized name. Read more

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input. Read more

Raised when a Deserialize struct type received more than one of the same field. Read more