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