Struct partiql_parser::Parsed
source · #[non_exhaustive]pub struct Parsed<'input> {
pub text: &'input str,
pub offsets: LineOffsetTracker,
pub ast: Box<Expr>,
pub locations: LocationMap<NodeId>,
}Expand description
The output of parsing PartiQL statement strings: an AST 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§ast: Box<Expr>§locations: LocationMap<NodeId>