pub struct SemanticEmbedding {
pub provider_id: String,
pub model: String,
pub values: Vec<f64>,
}Fields§
§provider_id: String§model: String§values: Vec<f64>Implementations§
Trait Implementations§
Source§impl Clone for SemanticEmbedding
impl Clone for SemanticEmbedding
Source§fn clone(&self) -> SemanticEmbedding
fn clone(&self) -> SemanticEmbedding
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 SemanticEmbedding
impl Debug for SemanticEmbedding
Source§impl PartialEq for SemanticEmbedding
impl PartialEq for SemanticEmbedding
Source§fn eq(&self, other: &SemanticEmbedding) -> bool
fn eq(&self, other: &SemanticEmbedding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SemanticEmbedding
Auto Trait Implementations§
impl Freeze for SemanticEmbedding
impl RefUnwindSafe for SemanticEmbedding
impl Send for SemanticEmbedding
impl Sync for SemanticEmbedding
impl Unpin for SemanticEmbedding
impl UnsafeUnpin for SemanticEmbedding
impl UnwindSafe for SemanticEmbedding
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