Enum sea_query::query::QueryStatement
source · pub enum QueryStatement {
Select(SelectStatement),
Insert(InsertStatement),
Update(UpdateStatement),
Delete(DeleteStatement),
}
Expand description
All available types of table query
Variants§
Select(SelectStatement)
Insert(InsertStatement)
Update(UpdateStatement)
Delete(DeleteStatement)
Trait Implementations§
source§impl Clone for QueryStatement
impl Clone for QueryStatement
source§fn clone(&self) -> QueryStatement
fn clone(&self) -> QueryStatement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more