Enum quire::Error []

pub enum Error {
    OpenError(PathBufError),
    TokenizerError(ErrorPos, Error),
    ParseError(ErrorPos, String),
    ValidationError(ErrorPos, String),
    PreprocessError(ErrorPos, String),
    DecodeError(ErrorPos, StringString),
}

Single error when of parsing configuration file

Usually you use ErrorList which embeds multiple errors encountered during configuration file parsing

Variants

Methods

impl Error
[src]

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

A short description of the error. Read more

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

impl Send for Error
[src]