Enum jsonpath_rust::parser::errors::JsonPathParserError
source · pub enum JsonPathParserError<'a> {
PestError(Error<Rule>),
JsonParsingError(Error),
ParserError(String),
UnexpectedRuleLogicError(Rule, Pairs<'a, Rule>),
UnexpectedNoneLogicError(Pairs<'a, Rule>),
}
Variants§
PestError(Error<Rule>)
JsonParsingError(Error)
ParserError(String)
UnexpectedRuleLogicError(Rule, Pairs<'a, Rule>)
UnexpectedNoneLogicError(Pairs<'a, Rule>)
Trait Implementations§
source§impl<'a> Debug for JsonPathParserError<'a>
impl<'a> Debug for JsonPathParserError<'a>
source§impl<'a> Display for JsonPathParserError<'a>
impl<'a> Display for JsonPathParserError<'a>
source§impl<'a> Error for JsonPathParserError<'a>
impl<'a> Error for JsonPathParserError<'a>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<'a> Freeze for JsonPathParserError<'a>
impl<'a> !RefUnwindSafe for JsonPathParserError<'a>
impl<'a> !Send for JsonPathParserError<'a>
impl<'a> !Sync for JsonPathParserError<'a>
impl<'a> Unpin for JsonPathParserError<'a>
impl<'a> !UnwindSafe for JsonPathParserError<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more