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