pub struct ExactRetrievalMatch {
pub key: Vec<u8>,
pub score_nanos: i64,
}Expand description
One canonical exact match.
Fields§
§key: Vec<u8>Binary object key.
score_nanos: i64Canonical integer cosine score.
Trait Implementations§
Source§impl Clone for ExactRetrievalMatch
impl Clone for ExactRetrievalMatch
Source§fn clone(&self) -> ExactRetrievalMatch
fn clone(&self) -> ExactRetrievalMatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExactRetrievalMatch
impl Debug for ExactRetrievalMatch
impl Eq for ExactRetrievalMatch
Source§impl PartialEq for ExactRetrievalMatch
impl PartialEq for ExactRetrievalMatch
impl StructuralPartialEq for ExactRetrievalMatch
Auto Trait Implementations§
impl Freeze for ExactRetrievalMatch
impl RefUnwindSafe for ExactRetrievalMatch
impl Send for ExactRetrievalMatch
impl Sync for ExactRetrievalMatch
impl Unpin for ExactRetrievalMatch
impl UnsafeUnpin for ExactRetrievalMatch
impl UnwindSafe for ExactRetrievalMatch
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