pub struct VectorChunkCandidateRow {
pub chunk_id: String,
pub session_id: String,
pub start_line: u32,
pub end_line: u32,
pub content: String,
pub embedding: Vec<f32>,
}Expand description
Candidate row used for local semantic vector ranking.
Fields§
§chunk_id: String§session_id: String§start_line: u32§end_line: u32§content: String§embedding: Vec<f32>Trait Implementations§
Source§impl Clone for VectorChunkCandidateRow
impl Clone for VectorChunkCandidateRow
Source§fn clone(&self) -> VectorChunkCandidateRow
fn clone(&self) -> VectorChunkCandidateRow
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 moreSource§impl Debug for VectorChunkCandidateRow
impl Debug for VectorChunkCandidateRow
Source§impl PartialEq for VectorChunkCandidateRow
impl PartialEq for VectorChunkCandidateRow
impl StructuralPartialEq for VectorChunkCandidateRow
Auto Trait Implementations§
impl Freeze for VectorChunkCandidateRow
impl RefUnwindSafe for VectorChunkCandidateRow
impl Send for VectorChunkCandidateRow
impl Sync for VectorChunkCandidateRow
impl Unpin for VectorChunkCandidateRow
impl UnsafeUnpin for VectorChunkCandidateRow
impl UnwindSafe for VectorChunkCandidateRow
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