pub enum UpsertUpdateMode {
InsertOnly,
UpdateOnly,
Upsert,
}Expand description
Write mode for UPDATE MODE on UPSERT (OpenAPI UpdateMode).
Variants§
InsertOnly
Only insert new points, do not update existing points.
UpdateOnly
Only update existing points, do not insert new points.
Upsert
Insert new points, update existing points (the default).
Trait Implementations§
Source§impl Clone for UpsertUpdateMode
impl Clone for UpsertUpdateMode
Source§fn clone(&self) -> UpsertUpdateMode
fn clone(&self) -> UpsertUpdateMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UpsertUpdateMode
Source§impl Debug for UpsertUpdateMode
impl Debug for UpsertUpdateMode
impl Eq for UpsertUpdateMode
Source§impl PartialEq for UpsertUpdateMode
impl PartialEq for UpsertUpdateMode
impl StructuralPartialEq for UpsertUpdateMode
Auto Trait Implementations§
impl Freeze for UpsertUpdateMode
impl RefUnwindSafe for UpsertUpdateMode
impl Send for UpsertUpdateMode
impl Sync for UpsertUpdateMode
impl Unpin for UpsertUpdateMode
impl UnsafeUnpin for UpsertUpdateMode
impl UnwindSafe for UpsertUpdateMode
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