pub struct VectorTarget {
pub name: String,
pub kind: Option<VectorKind>,
pub multi: bool,
}Fields§
§name: String§kind: Option<VectorKind>§multi: boolMultivector (ColBERT-style) dense target. Filled at parse only via
AS MULTI, or at execution prep from collection schema
(multivector_config). Not a third VectorKind — still dense.
Trait Implementations§
Source§impl Clone for VectorTarget
impl Clone for VectorTarget
Source§fn clone(&self) -> VectorTarget
fn clone(&self) -> VectorTarget
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 VectorTarget
impl Debug for VectorTarget
impl Eq for VectorTarget
Source§impl PartialEq for VectorTarget
impl PartialEq for VectorTarget
impl StructuralPartialEq for VectorTarget
Auto Trait Implementations§
impl Freeze for VectorTarget
impl RefUnwindSafe for VectorTarget
impl Send for VectorTarget
impl Sync for VectorTarget
impl Unpin for VectorTarget
impl UnsafeUnpin for VectorTarget
impl UnwindSafe for VectorTarget
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