pub enum JsonPathParserError {
PestError(Box<Error<Rule>>),
UnexpectedRuleLogicError(Rule, String, String),
UnexpectedNoneLogicError(String, String),
UnexpectedPestOutput,
NoRulePath,
NoJsonPathDescent,
NoJsonPathField,
InvalidNumber(String),
InvalidTopLevelRule(Rule),
EmptyInner(String),
}
Variants§
PestError(Box<Error<Rule>>)
UnexpectedRuleLogicError(Rule, String, String)
UnexpectedNoneLogicError(String, String)
UnexpectedPestOutput
NoRulePath
NoJsonPathDescent
NoJsonPathField
InvalidNumber(String)
InvalidTopLevelRule(Rule)
EmptyInner(String)
Trait Implementations§
Source§impl Debug for JsonPathParserError
impl Debug for JsonPathParserError
Source§impl Display for JsonPathParserError
impl Display for JsonPathParserError
Source§impl Error for JsonPathParserError
impl Error for JsonPathParserError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 Freeze for JsonPathParserError
impl RefUnwindSafe for JsonPathParserError
impl Send for JsonPathParserError
impl Sync for JsonPathParserError
impl Unpin for JsonPathParserError
impl UnwindSafe for JsonPathParserError
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