pub struct AstQuery {
pub dialect: DialectVersion,
pub clauses: Vec<AstClause>,
pub span: Span,
}Expand description
A fully parsed Cypher query.
At the skeleton stage clauses may be empty; the real parser populates it.
Fields§
§dialect: DialectVersionCypher dialect in use.
clauses: Vec<AstClause>Top-level clauses in source order.
span: SpanSpan covering the full query source.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AstQuery
impl<'de> Deserialize<'de> for AstQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AstQuery
Auto Trait Implementations§
impl Freeze for AstQuery
impl RefUnwindSafe for AstQuery
impl Send for AstQuery
impl Sync for AstQuery
impl Unpin for AstQuery
impl UnsafeUnpin for AstQuery
impl UnwindSafe for AstQuery
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