Enum sqlite3_parser::ast::Stmt [−][src]
Variants
AlterTable(QualifiedName, AlterTableBody)Analyze(Option<QualifiedName>)Begin(Option<TransactionType>, Option<Name>)Fields of CreateIndex
unique: boolif_not_exists: boolidx_name: QualifiedNametbl_name: Namecolumns: Vec<SortedColumn>where_clause: Option<Expr>Fields of CreateTable
Fields of CreateTrigger
temporary: boolif_not_exists: booltrigger_name: QualifiedNametime: Option<TriggerTime>event: TriggerEventtbl_name: QualifiedNamefor_each_row: boolwhen_clause: Option<Expr>commands: Vec<TriggerCmd>Fields of CreateView
temporary: boolif_not_exists: boolview_name: QualifiedNamecolumns: Option<Vec<IndexedColumn>>select: SelectFields of CreateVirtualTable
Fields of Delete
Detach(Expr)Fields of DropIndex
if_exists: boolidx_name: QualifiedNameFields of DropTable
if_exists: booltbl_name: QualifiedNameFields of DropTrigger
if_exists: booltrigger_name: QualifiedNameFields of DropView
if_exists: boolview_name: QualifiedNameFields of Insert
with: Option<With>or_conflict: Option<ResolveType>tbl_name: QualifiedNamecolumns: Option<Vec<Name>>body: InsertBodyPragma(QualifiedName, Option<PragmaBody>)Fields of Reindex
obj_name: Option<QualifiedName>Release(Name)Savepoint(Name)Select(Select)Fields of Update
with: Option<With>or_conflict: Option<ResolveType>tbl_name: QualifiedNameindexed: Option<Indexed>sets: Vec<Set>from: Option<FromClause>where_clause: Option<Expr>order_by: Option<Vec<SortedColumn>>limit: Option<Limit>Trait Implementations
impl Clone for Stmt[src]
impl Debug for Stmt[src]
impl Eq for Stmt[src]
impl PartialEq<Stmt> for Stmt[src]
impl StructuralEq for Stmt[src]
impl StructuralPartialEq for Stmt[src]
impl ToTokens for Stmt[src]
Auto Trait Implementations
impl RefUnwindSafe for Stmt[src]
impl Send for Stmt[src]
impl Sync for Stmt[src]
impl Unpin for Stmt[src]
impl UnwindSafe for Stmt[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,