[][src]Enum config::ConfigError

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

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

Variants

Frozen

Configuration is frozen and no further mutations can be made.

NotFound(String)

Configuration property was not found

PathParse(ErrorKind)

Configuration path could not be parsed.

FileParse

Configuration could not be parsed from file.

Fields of FileParse

uri: Option<String>

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

cause: Box<dyn Error + Send + Sync>

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.

Type

Value could not be converted into the requested type.

Fields of Type

origin: Option<String>

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

unexpected: Unexpected

What we found when parsing the value

expected: &'static str

What was expected when parsing the value

key: Option<String>

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

Message(String)

Custom message

Foreign(Box<dyn Error + Send + Sync>)

Unadorned error from a foreign origin.

Trait Implementations

impl Display for ConfigError[src]

impl Debug for ConfigError[src]

impl Error for ConfigError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

impl Error for ConfigError[src]

impl Error for ConfigError[src]

fn invalid_type(unexp: Unexpected, exp: &dyn Expected) -> Self[src]

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

fn invalid_value(unexp: Unexpected, exp: &dyn Expected) -> Self[src]

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

fn invalid_length(len: usize, exp: &dyn Expected) -> Self[src]

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

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self[src]

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

fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self[src]

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

fn missing_field(field: &'static str) -> Self[src]

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

fn duplicate_field(field: &'static str) -> Self[src]

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

Auto Trait Implementations

impl Send for ConfigError

impl Sync for ConfigError

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]