pub struct SqliteVectorStoreConfig {
pub path: String,
}Expand description
Configuration for SqliteVectorStore.
Fields§
§path: StringPath to the SQLite database file. Use ":memory:" for an in-memory database.
Implementations§
Trait Implementations§
Source§impl Clone for SqliteVectorStoreConfig
impl Clone for SqliteVectorStoreConfig
Source§fn clone(&self) -> SqliteVectorStoreConfig
fn clone(&self) -> SqliteVectorStoreConfig
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 SqliteVectorStoreConfig
impl RefUnwindSafe for SqliteVectorStoreConfig
impl Send for SqliteVectorStoreConfig
impl Sync for SqliteVectorStoreConfig
impl Unpin for SqliteVectorStoreConfig
impl UnsafeUnpin for SqliteVectorStoreConfig
impl UnwindSafe for SqliteVectorStoreConfig
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