Enum quire::sky::Error []

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

Variants

TokenizerError(ErrorPos, String)ParseError(ErrorPos, String)ValidationError(ErrorPos, String)PreprocessError(ErrorPos, String)DecodeError(ErrorPos, StringString)

Methods

impl Error
[src]

fn parse_error(pos: &Pos, message: String) -> Error

fn tokenizer_error(pos: &Pos, message: String) -> Error

fn validation_error(pos: &Pos, message: String) -> Error

fn decode_error(pos: &Pos, path: &String, message: String) -> Error

fn preprocess_error(pos: &Pos, message: String) -> Error

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Error
[src]

fn clone(&self) -> Error

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Display for Error

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for Error

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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

impl Send for Error
[src]