pub struct EmbeddingSnapshotV1 {
pub embedding_snapshot_digest: String,
pub source_digest: String,
pub vector_dim: usize,
pub rows: Vec<EmbeddingSnapshotRow>,
}Expand description
Stable deterministic digest envelope for authoritative f32 embedding rows.
Fields§
§embedding_snapshot_digest: String§source_digest: String§vector_dim: usize§rows: Vec<EmbeddingSnapshotRow>Trait Implementations§
Source§impl Clone for EmbeddingSnapshotV1
impl Clone for EmbeddingSnapshotV1
Source§fn clone(&self) -> EmbeddingSnapshotV1
fn clone(&self) -> EmbeddingSnapshotV1
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 EmbeddingSnapshotV1
impl Debug for EmbeddingSnapshotV1
Source§impl<'de> Deserialize<'de> for EmbeddingSnapshotV1
impl<'de> Deserialize<'de> for EmbeddingSnapshotV1
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 EmbeddingSnapshotV1
impl PartialEq for EmbeddingSnapshotV1
Source§fn eq(&self, other: &EmbeddingSnapshotV1) -> bool
fn eq(&self, other: &EmbeddingSnapshotV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EmbeddingSnapshotV1
impl Serialize for EmbeddingSnapshotV1
impl StructuralPartialEq for EmbeddingSnapshotV1
Auto Trait Implementations§
impl Freeze for EmbeddingSnapshotV1
impl RefUnwindSafe for EmbeddingSnapshotV1
impl Send for EmbeddingSnapshotV1
impl Sync for EmbeddingSnapshotV1
impl Unpin for EmbeddingSnapshotV1
impl UnsafeUnpin for EmbeddingSnapshotV1
impl UnwindSafe for EmbeddingSnapshotV1
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