Enum partiql_ast::ast::DmlOp
source · pub enum DmlOp {
Insert(Insert),
InsertValue(InsertValue),
Set(Set),
Remove(Remove),
Delete(Delete),
}
Variants§
Insert(Insert)
INSERT INTO <expr> <expr>
InsertValue(InsertValue)
INSERT INTO <expr> VALUE <expr> [AT <expr>]
[ON CONFLICT WHERE
Set(Set)
SET <assignment>...
Remove(Remove)
REMOVE <expr>
Delete(Delete)
DELETE
Trait Implementations§
source§impl PartialEq<DmlOp> for DmlOp
impl PartialEq<DmlOp> for DmlOp
impl StructuralPartialEq for DmlOp
Auto Trait Implementations§
impl RefUnwindSafe for DmlOp
impl Send for DmlOp
impl Sync for DmlOp
impl Unpin for DmlOp
impl UnwindSafe for DmlOp
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