pub struct CognitiveMemoryConfig {
pub scoring_config: ThreeComponentConfig,
pub consolidation_config: CognitiveConsolidationConfig,
pub reflection_config: ReflectionConfig,
pub loop_prevention_config: LoopPreventionConfig,
pub enable_auto_processing: bool,
pub enable_background_reflection: bool,
pub auto_processing_interval_minutes: u64,
pub enable_performance_monitoring: bool,
pub max_concurrent_operations: usize,
}Expand description
Configuration for the complete cognitive memory system
Fields§
§scoring_config: ThreeComponentConfigThree-component scoring configuration
consolidation_config: CognitiveConsolidationConfigCognitive consolidation configuration
reflection_config: ReflectionConfigReflection engine configuration
loop_prevention_config: LoopPreventionConfigLoop prevention configuration
enable_auto_processing: boolEnable automatic cognitive processing
enable_background_reflection: boolEnable background reflection monitoring
auto_processing_interval_minutes: u64Minimum time between automatic processing (minutes)
enable_performance_monitoring: boolPerformance monitoring configuration
max_concurrent_operations: usizeMaximum concurrent cognitive operations
Trait Implementations§
Source§impl Clone for CognitiveMemoryConfig
impl Clone for CognitiveMemoryConfig
Source§fn clone(&self) -> CognitiveMemoryConfig
fn clone(&self) -> CognitiveMemoryConfig
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 CognitiveMemoryConfig
impl Debug for CognitiveMemoryConfig
Source§impl Default for CognitiveMemoryConfig
impl Default for CognitiveMemoryConfig
Source§impl<'de> Deserialize<'de> for CognitiveMemoryConfig
impl<'de> Deserialize<'de> for CognitiveMemoryConfig
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 CognitiveMemoryConfig
impl RefUnwindSafe for CognitiveMemoryConfig
impl Send for CognitiveMemoryConfig
impl Sync for CognitiveMemoryConfig
impl Unpin for CognitiveMemoryConfig
impl UnwindSafe for CognitiveMemoryConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more