pub struct SnapshotVectorEntry {
pub space: VectorSpaceName,
pub key: Vec<u8>,
pub vector: Q15Vector,
}Expand description
One verified durable vector loaded from a canonical snapshot.
Fields§
§space: VectorSpaceNameCanonical vector-space name.
key: Vec<u8>Nonempty binary object key.
vector: Q15VectorCanonical signed-Q15 vector.
Trait Implementations§
Source§impl Clone for SnapshotVectorEntry
impl Clone for SnapshotVectorEntry
Source§fn clone(&self) -> SnapshotVectorEntry
fn clone(&self) -> SnapshotVectorEntry
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 SnapshotVectorEntry
impl Debug for SnapshotVectorEntry
impl Eq for SnapshotVectorEntry
Source§impl PartialEq for SnapshotVectorEntry
impl PartialEq for SnapshotVectorEntry
impl StructuralPartialEq for SnapshotVectorEntry
Auto Trait Implementations§
impl Freeze for SnapshotVectorEntry
impl RefUnwindSafe for SnapshotVectorEntry
impl Send for SnapshotVectorEntry
impl Sync for SnapshotVectorEntry
impl Unpin for SnapshotVectorEntry
impl UnsafeUnpin for SnapshotVectorEntry
impl UnwindSafe for SnapshotVectorEntry
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