pub struct DurableVectorRecord {
pub key: Vec<u8>,
pub vector: Q15Vector,
}Expand description
One durable exact-retrieval candidate.
Fields§
§key: Vec<u8>Globally unique nonempty object key within the selected space.
vector: Q15VectorCanonical signed-Q15 vector.
Trait Implementations§
Source§impl Clone for DurableVectorRecord
impl Clone for DurableVectorRecord
Source§fn clone(&self) -> DurableVectorRecord
fn clone(&self) -> DurableVectorRecord
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 DurableVectorRecord
impl Debug for DurableVectorRecord
impl Eq for DurableVectorRecord
Source§impl PartialEq for DurableVectorRecord
impl PartialEq for DurableVectorRecord
impl StructuralPartialEq for DurableVectorRecord
Auto Trait Implementations§
impl Freeze for DurableVectorRecord
impl RefUnwindSafe for DurableVectorRecord
impl Send for DurableVectorRecord
impl Sync for DurableVectorRecord
impl Unpin for DurableVectorRecord
impl UnsafeUnpin for DurableVectorRecord
impl UnwindSafe for DurableVectorRecord
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