pub struct ContextStoreConfig {
pub path: Option<PathBuf>,
}Expand description
Configuration for the ContextStore.
Fields§
§path: Option<PathBuf>Path to the SQLite database file. If None, uses in-memory storage (testing only).
Trait Implementations§
Source§impl Clone for ContextStoreConfig
impl Clone for ContextStoreConfig
Source§fn clone(&self) -> ContextStoreConfig
fn clone(&self) -> ContextStoreConfig
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 ContextStoreConfig
impl Debug for ContextStoreConfig
Auto Trait Implementations§
impl Freeze for ContextStoreConfig
impl RefUnwindSafe for ContextStoreConfig
impl Send for ContextStoreConfig
impl Sync for ContextStoreConfig
impl Unpin for ContextStoreConfig
impl UnsafeUnpin for ContextStoreConfig
impl UnwindSafe for ContextStoreConfig
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