pub struct EmbeddingSnapshotRow {
pub item_id: String,
pub source_type: String,
pub embedding: Vec<f32>,
}Expand description
One authoritative embedding row included in a derived candidate snapshot.
Fields§
§item_id: String§source_type: String§embedding: Vec<f32>Trait Implementations§
Source§impl Clone for EmbeddingSnapshotRow
impl Clone for EmbeddingSnapshotRow
Source§fn clone(&self) -> EmbeddingSnapshotRow
fn clone(&self) -> EmbeddingSnapshotRow
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 EmbeddingSnapshotRow
impl Debug for EmbeddingSnapshotRow
Source§impl<'de> Deserialize<'de> for EmbeddingSnapshotRow
impl<'de> Deserialize<'de> for EmbeddingSnapshotRow
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 EmbeddingSnapshotRow
impl PartialEq for EmbeddingSnapshotRow
Source§impl Serialize for EmbeddingSnapshotRow
impl Serialize for EmbeddingSnapshotRow
impl StructuralPartialEq for EmbeddingSnapshotRow
Auto Trait Implementations§
impl Freeze for EmbeddingSnapshotRow
impl RefUnwindSafe for EmbeddingSnapshotRow
impl Send for EmbeddingSnapshotRow
impl Sync for EmbeddingSnapshotRow
impl Unpin for EmbeddingSnapshotRow
impl UnsafeUnpin for EmbeddingSnapshotRow
impl UnwindSafe for EmbeddingSnapshotRow
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