pub struct CollectionVectorKey {
pub collection_id: CollectionId,
pub entity_id: EntityId,
pub vector_name_hash: u64,
}Expand description
A decoded collection vector key.
Fields§
§collection_id: CollectionIdThe collection ID.
entity_id: EntityIdThe entity ID.
vector_name_hash: u64The hash of the vector name.
Trait Implementations§
Source§impl Clone for CollectionVectorKey
impl Clone for CollectionVectorKey
Source§fn clone(&self) -> CollectionVectorKey
fn clone(&self) -> CollectionVectorKey
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 CollectionVectorKey
impl Debug for CollectionVectorKey
Source§impl PartialEq for CollectionVectorKey
impl PartialEq for CollectionVectorKey
impl Copy for CollectionVectorKey
impl Eq for CollectionVectorKey
impl StructuralPartialEq for CollectionVectorKey
Auto Trait Implementations§
impl Freeze for CollectionVectorKey
impl RefUnwindSafe for CollectionVectorKey
impl Send for CollectionVectorKey
impl Sync for CollectionVectorKey
impl Unpin for CollectionVectorKey
impl UnwindSafe for CollectionVectorKey
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