Struct partiql_parser::Parsed
source · #[non_exhaustive]pub struct Parsed<'input> {
pub text: &'input str,
pub offsets: LineOffsetTracker,
pub ast: AstNode<TopLevelQuery>,
pub locations: LocationMap,
}
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: AstNode<TopLevelQuery>
§locations: LocationMap
Trait Implementations§
Auto Trait Implementations§
impl<'input> RefUnwindSafe for Parsed<'input>
impl<'input> Send for Parsed<'input>
impl<'input> Sync for Parsed<'input>
impl<'input> Unpin for Parsed<'input>
impl<'input> UnwindSafe for Parsed<'input>
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