pub struct DenseVectorKey {
pub collection_name_hash: u64,
pub point_id: PointId,
pub vector_name_hash: u64,
}Expand description
A decoded dense vector key.
Fields§
§collection_name_hash: u64The hash of the collection name.
point_id: PointIdThe point ID.
vector_name_hash: u64The hash of the vector name.
Trait Implementations§
Source§impl Clone for DenseVectorKey
impl Clone for DenseVectorKey
Source§fn clone(&self) -> DenseVectorKey
fn clone(&self) -> DenseVectorKey
Returns a duplicate 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 DenseVectorKey
impl Debug for DenseVectorKey
Source§impl PartialEq for DenseVectorKey
impl PartialEq for DenseVectorKey
impl Copy for DenseVectorKey
impl Eq for DenseVectorKey
impl StructuralPartialEq for DenseVectorKey
Auto Trait Implementations§
impl Freeze for DenseVectorKey
impl RefUnwindSafe for DenseVectorKey
impl Send for DenseVectorKey
impl Sync for DenseVectorKey
impl Unpin for DenseVectorKey
impl UnwindSafe for DenseVectorKey
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