Enum sea_query::query::QueryStatement [−][src]
pub enum QueryStatement {
Select(SelectStatement),
Insert(InsertStatement),
Update(UpdateStatement),
Delete(DeleteStatement),
}
Expand description
All available types of table query
Variants
Select(SelectStatement)
Tuple Fields
Insert(InsertStatement)
Tuple Fields
Update(UpdateStatement)
Tuple Fields
Delete(DeleteStatement)
Tuple Fields
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for QueryStatement
impl Send for QueryStatement
impl Sync for QueryStatement
impl Unpin for QueryStatement
impl !UnwindSafe for QueryStatement
Blanket Implementations
Mutably borrows from an owned value. Read more