pub struct VectorIndexSnapshot {
pub name: String,
pub entity: StoredIndexEntity,
pub label: String,
pub property: String,
pub data: VectorBackendSnapshot,
}Expand description
Snapshot of one vector index, carried through the snapshot
pipeline. Only HNSW backends are persisted today (see
[VectorIndexRegistry::to_snapshots]); the enum is open for a
future Flat arm if pre-built flat backends become expensive to
rebuild for some workload.
Fields§
§name: String§entity: StoredIndexEntity§label: String§property: String§data: VectorBackendSnapshotTrait Implementations§
Source§impl Clone for VectorIndexSnapshot
impl Clone for VectorIndexSnapshot
Source§fn clone(&self) -> VectorIndexSnapshot
fn clone(&self) -> VectorIndexSnapshot
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 VectorIndexSnapshot
impl Debug for VectorIndexSnapshot
Source§impl<'de> Deserialize<'de> for VectorIndexSnapshot
impl<'de> Deserialize<'de> for VectorIndexSnapshot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VectorIndexSnapshot
impl PartialEq for VectorIndexSnapshot
Source§fn eq(&self, other: &VectorIndexSnapshot) -> bool
fn eq(&self, other: &VectorIndexSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VectorIndexSnapshot
impl Serialize for VectorIndexSnapshot
impl StructuralPartialEq for VectorIndexSnapshot
Auto Trait Implementations§
impl Freeze for VectorIndexSnapshot
impl RefUnwindSafe for VectorIndexSnapshot
impl Send for VectorIndexSnapshot
impl Sync for VectorIndexSnapshot
impl Unpin for VectorIndexSnapshot
impl UnsafeUnpin for VectorIndexSnapshot
impl UnwindSafe for VectorIndexSnapshot
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