pub struct UpdateVectorPoint {
pub id: PointId,
pub vectors: PointVectors,
}Expand description
One point in UPDATE … SET VECTOR (unnamed, one named vector, or a name map).
Fields§
§id: PointIdPoint whose vectors are replaced.
vectors: PointVectorsReplacement vectors (unnamed, named map, or a parameter).
Trait Implementations§
Source§impl Clone for UpdateVectorPoint
impl Clone for UpdateVectorPoint
Source§fn clone(&self) -> UpdateVectorPoint
fn clone(&self) -> UpdateVectorPoint
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 UpdateVectorPoint
impl Debug for UpdateVectorPoint
Source§impl PartialEq for UpdateVectorPoint
impl PartialEq for UpdateVectorPoint
impl StructuralPartialEq for UpdateVectorPoint
Auto Trait Implementations§
impl Freeze for UpdateVectorPoint
impl RefUnwindSafe for UpdateVectorPoint
impl Send for UpdateVectorPoint
impl Sync for UpdateVectorPoint
impl Unpin for UpdateVectorPoint
impl UnsafeUnpin for UpdateVectorPoint
impl UnwindSafe for UpdateVectorPoint
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