Enum partiql_ast::ast::DdlOp
source · pub enum DdlOp {
CreateTable(CreateTable),
DropTable(DropTable),
CreateIndex(CreateIndex),
DropIndex(DropIndex),
}
Variants§
CreateTable(CreateTable)
CREATE TABLE <symbol>
DropTable(DropTable)
DROP TABLE <Ident>
CreateIndex(CreateIndex)
CREATE INDEX ON <Ident> (<expr> [, <expr>]...)
DropIndex(DropIndex)
DROP INDEX
Trait Implementations§
source§impl PartialEq<DdlOp> for DdlOp
impl PartialEq<DdlOp> for DdlOp
impl StructuralPartialEq for DdlOp
Auto Trait Implementations§
impl RefUnwindSafe for DdlOp
impl Send for DdlOp
impl Sync for DdlOp
impl Unpin for DdlOp
impl UnwindSafe for DdlOp
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