pub struct MemoryV3Config {
pub data_dir: PathBuf,
pub storage: StorageConfig,
pub indexes: IndexConfig,
pub embeddings: EmbeddingConfig,
pub encryption: EncryptionConfig,
pub auto_capture: AutoCaptureConfig,
pub performance: PerformanceConfig,
}Expand description
Complete V3 configuration
Fields§
§data_dir: PathBufData directory
storage: StorageConfigStorage configuration
indexes: IndexConfigIndex configuration
embeddings: EmbeddingConfigEmbedding configuration
encryption: EncryptionConfigEncryption configuration
auto_capture: AutoCaptureConfigAuto-capture configuration
performance: PerformanceConfigPerformance configuration
Implementations§
Trait Implementations§
Source§impl Clone for MemoryV3Config
impl Clone for MemoryV3Config
Source§fn clone(&self) -> MemoryV3Config
fn clone(&self) -> MemoryV3Config
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 MemoryV3Config
impl Debug for MemoryV3Config
Source§impl Default for MemoryV3Config
impl Default for MemoryV3Config
Source§impl<'de> Deserialize<'de> for MemoryV3Config
impl<'de> Deserialize<'de> for MemoryV3Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MemoryV3Config
impl RefUnwindSafe for MemoryV3Config
impl Send for MemoryV3Config
impl Sync for MemoryV3Config
impl Unpin for MemoryV3Config
impl UnsafeUnpin for MemoryV3Config
impl UnwindSafe for MemoryV3Config
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