pub enum WithQuery {
Delete(Delete),
Insert(Insert),
Merge(Merge),
Select(Select),
Update(Update),
Values(Values),
}
Variants§
Trait Implementations§
Source§impl AstNode for WithQuery
impl AstNode for WithQuery
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
impl Eq for WithQuery
impl StructuralPartialEq for WithQuery
Auto Trait Implementations§
impl Freeze for WithQuery
impl !RefUnwindSafe for WithQuery
impl !Send for WithQuery
impl !Sync for WithQuery
impl Unpin for WithQuery
impl !UnwindSafe for WithQuery
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