Struct pest::error::Error [−][src]
pub struct Error<R> { pub variant: ErrorVariant<R>, pub location: InputLocation, pub line_col: LineColLocation, // some fields omitted }
Parse-related error type.
Fields
variant: ErrorVariant<R>
Variant of the error
location: InputLocation
Location within the input string
line_col: LineColLocation
Line/column within the input string
Implementations
impl<R: RuleType> Error<R>
[src]
impl<R: RuleType> Error<R>
[src]pub fn new_from_pos(variant: ErrorVariant<R>, pos: Position<'_>) -> Error<R>
[src]
Creates Error
from ErrorVariant
and Position
.
Examples
let error = Error::new_from_pos( ErrorVariant::ParsingError { positives: vec![Rule::open_paren], negatives: vec![Rule::closed_paren] }, pos ); println!("{}", error);
pub fn new_from_span(variant: ErrorVariant<R>, span: Span<'_>) -> Error<R>
[src]
Creates Error
from ErrorVariant
and Span
.
Examples
let error = Error::new_from_span( ErrorVariant::ParsingError { positives: vec![Rule::open_paren], negatives: vec![Rule::closed_paren] }, span ); println!("{}", error);
pub fn with_path(self, path: &str) -> Error<R>
[src]
Returns Error
variant with path
which is shown when formatted with Display
.
Examples
Error::new_from_pos( ErrorVariant::ParsingError { positives: vec![Rule::open_paren], negatives: vec![Rule::closed_paren] }, pos ).with_path("file.rs");
pub fn renamed_rules<F>(self, f: F) -> Error<R> where
F: FnMut(&R) -> String,
[src]
F: FnMut(&R) -> String,
Renames all Rule
s if this is a ParsingError
. It does nothing when called on a
CustomError
.
Useful in order to rename verbose rules or have detailed per-Rule
formatting.
Examples
Error::new_from_pos( ErrorVariant::ParsingError { positives: vec![Rule::open_paren], negatives: vec![Rule::closed_paren] }, pos ).renamed_rules(|rule| { match *rule { Rule::open_paren => "(".to_owned(), Rule::closed_paren => "closed paren".to_owned() } });
Trait Implementations
impl<R: Eq> Eq for Error<R>
[src]
impl<R> StructuralEq for Error<R>
[src]
impl<R> StructuralPartialEq for Error<R>
[src]
Auto Trait Implementations
impl<R> RefUnwindSafe for Error<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for Error<R> where
R: Send,
R: Send,
impl<R> Sync for Error<R> where
R: Sync,
R: Sync,
impl<R> Unpin for Error<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for Error<R> where
R: UnwindSafe,
R: UnwindSafe,