Struct partiql_parser::ParserError
source · #[non_exhaustive]pub struct ParserError<'input> {
pub text: &'input str,
pub offsets: LineOffsetTracker,
pub errors: Vec<ParseError<'input>>,
}Expand description
The output of errors when parsing PartiQL statement strings: an errors and auxiliary data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.text: &'input str§offsets: LineOffsetTracker§errors: Vec<ParseError<'input>>