Enum migration::OnConflictAction
source · pub enum OnConflictAction {
DoNothing,
Update(Vec<OnConflictUpdate>),
}
Expand description
Represents ON CONFLICT (upsert) actions
Variants§
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 moresource§impl Debug for OnConflictAction
impl Debug for OnConflictAction
source§impl PartialEq for OnConflictAction
impl PartialEq for OnConflictAction
source§fn eq(&self, other: &OnConflictAction) -> bool
fn eq(&self, other: &OnConflictAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OnConflictAction
Auto Trait Implementations§
impl Freeze for OnConflictAction
impl !RefUnwindSafe for OnConflictAction
impl Send for OnConflictAction
impl Sync for OnConflictAction
impl Unpin for OnConflictAction
impl !UnwindSafe for OnConflictAction
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