Enum sea_query::query::OnConflictAction
source · pub enum OnConflictAction {
DoNothing,
UpdateColumns(Vec<DynIden>),
UpdateExprs(Vec<(DynIden, SimpleExpr)>),
}
Expand description
Represents ON CONFLICT (upsert) actions
Variants§
DoNothing
Do nothing
UpdateColumns(Vec<DynIden>)
Update column value of existing row with inserting value
UpdateExprs(Vec<(DynIden, SimpleExpr)>)
Update column value of existing row with expression
Trait Implementations§
source§impl Clone for OnConflictAction
impl Clone for OnConflictAction
source§fn clone(&self) -> OnConflictAction
fn clone(&self) -> OnConflictAction
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