pub struct EmbeddingEntry {
pub qualified_name: String,
pub vector: Vec<f32>,
pub text_hash: String,
}Fields§
§qualified_name: String§vector: Vec<f32>§text_hash: StringTrait Implementations§
Source§impl Clone for EmbeddingEntry
impl Clone for EmbeddingEntry
Source§fn clone(&self) -> EmbeddingEntry
fn clone(&self) -> EmbeddingEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EmbeddingEntry
impl RefUnwindSafe for EmbeddingEntry
impl Send for EmbeddingEntry
impl Sync for EmbeddingEntry
impl Unpin for EmbeddingEntry
impl UnsafeUnpin for EmbeddingEntry
impl UnwindSafe for EmbeddingEntry
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