Enum clippy_lints::utils::conf::Error [] [src]

pub enum Error {
    Io(Error),
    Toml(Vec<ParserError>),
    Type(&'static str, &'static str, &'static str),
    UnknownKey(String),
}

Error from reading a configuration file.

Variants

An I/O error.

The file is not valid TOML.

Type error.

There is an unknown key is the file.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.