pub enum ParseError {
SyntaxError {
location: Location,
expected: String,
found: String,
context: Vec<String>,
},
UnexpectedInput {
location: Location,
snippet: String,
},
InvalidValue {
location: Location,
kind: String,
reason: String,
},
UnmatchedDelimiter {
location: Location,
delimiter: char,
},
Internal {
message: String,
},
}Expand description
Errors that can occur during parsing
Variants§
SyntaxError
Syntax error with location and context
UnexpectedInput
Unexpected input after successful parse
InvalidValue
Invalid value (number, string, identifier)
UnmatchedDelimiter
Unmatched delimiter (bracket, paren, brace)
Internal
Internal parser error (should not occur in production)
Implementations§
Source§impl ParseError
impl ParseError
Sourcepub fn from_nom_error(input: &str, err: Err<VerboseError<&str>>) -> Self
pub fn from_nom_error(input: &str, err: Err<VerboseError<&str>>) -> Self
Create a syntax error from nom’s VerboseError
Sourcepub fn with_context(self, context: String) -> Self
pub fn with_context(self, context: String) -> Self
Add context to this error
Trait Implementations§
Source§impl Debug for ParseError
impl Debug for ParseError
Source§impl Display for ParseError
impl Display for ParseError
Source§impl Error for ParseError
impl Error for ParseError
1.30.0 · 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 ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnsafeUnpin for ParseError
impl UnwindSafe for ParseError
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