pub struct VectorsConfig {
pub on_disk: Option<bool>,
pub memory: Option<MemoryPlacement>,
pub datatype: Option<VectorDatatype>,
}Expand description
WITH VECTOR (…) storage settings.
Fields§
§on_disk: Option<bool>Legacy flag storing original vectors on disk (prefer memory).
memory: Option<MemoryPlacement>Memory placement of the original vector storage.
datatype: Option<VectorDatatype>Storage datatype for dense vectors.
Trait Implementations§
Source§impl Clone for VectorsConfig
impl Clone for VectorsConfig
Source§fn clone(&self) -> VectorsConfig
fn clone(&self) -> VectorsConfig
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 VectorsConfig
impl Debug for VectorsConfig
Source§impl PartialEq for VectorsConfig
impl PartialEq for VectorsConfig
impl StructuralPartialEq for VectorsConfig
Auto Trait Implementations§
impl Freeze for VectorsConfig
impl RefUnwindSafe for VectorsConfig
impl Send for VectorsConfig
impl Sync for VectorsConfig
impl Unpin for VectorsConfig
impl UnsafeUnpin for VectorsConfig
impl UnwindSafe for VectorsConfig
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