pub struct MemoryBridgeConfig {
pub sync_enabled: bool,
pub interval_secs: u64,
}Expand description
AutoMemoryBridge configuration (RFC-012 Phase 7).
Controls bidirectional sync between SQLite memory store and external MEMORY.md files.
Fields§
§sync_enabled: boolEnable bidirectional sync with MEMORY.md.
interval_secs: u64Sync interval in seconds.
Trait Implementations§
Source§impl Clone for MemoryBridgeConfig
impl Clone for MemoryBridgeConfig
Source§fn clone(&self) -> MemoryBridgeConfig
fn clone(&self) -> MemoryBridgeConfig
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 MemoryBridgeConfig
impl Debug for MemoryBridgeConfig
Source§impl Default for MemoryBridgeConfig
impl Default for MemoryBridgeConfig
Source§impl<'de> Deserialize<'de> for MemoryBridgeConfig
impl<'de> Deserialize<'de> for MemoryBridgeConfig
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 MemoryBridgeConfig
impl RefUnwindSafe for MemoryBridgeConfig
impl Send for MemoryBridgeConfig
impl Sync for MemoryBridgeConfig
impl Unpin for MemoryBridgeConfig
impl UnsafeUnpin for MemoryBridgeConfig
impl UnwindSafe for MemoryBridgeConfig
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