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