pub struct UpsertPoint {
pub id: PointId,
pub vectors: Option<PointVectors>,
pub payload: Vec<(String, Value)>,
}Expand description
One VALUES {…} object of an UPSERT INTO.
Fields§
§id: PointIdPoint identifier (unsigned integer or string).
vectors: Option<PointVectors>Optional pre-computed vectors, unnamed or by name.
payload: Vec<(String, Value)>Remaining object entries as payload key-value pairs.
Trait Implementations§
Source§impl Clone for UpsertPoint
impl Clone for UpsertPoint
Source§fn clone(&self) -> UpsertPoint
fn clone(&self) -> UpsertPoint
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 moreSource§impl Debug for UpsertPoint
impl Debug for UpsertPoint
Source§impl PartialEq for UpsertPoint
impl PartialEq for UpsertPoint
impl StructuralPartialEq for UpsertPoint
Auto Trait Implementations§
impl Freeze for UpsertPoint
impl RefUnwindSafe for UpsertPoint
impl Send for UpsertPoint
impl Sync for UpsertPoint
impl Unpin for UpsertPoint
impl UnsafeUnpin for UpsertPoint
impl UnwindSafe for UpsertPoint
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