pub struct ApexMemConfig {
pub enabled: bool,
}Expand description
APEX-MEM append-only write path configuration ([memory.graph.apex_mem]).
When enabled = true, graph edge insertion uses insert_or_supersede
instead of the legacy destructive-update resolve_edge_typed. This preserves
the full supersession chain and enables conflict resolution.
Spec: /specs/004-memory/004-7-memory-apex-magma.md
Fields§
§enabled: boolEnable the APEX-MEM append-only write path. Default: false.
Trait Implementations§
Source§impl Clone for ApexMemConfig
impl Clone for ApexMemConfig
Source§fn clone(&self) -> ApexMemConfig
fn clone(&self) -> ApexMemConfig
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 ApexMemConfig
impl Debug for ApexMemConfig
Source§impl Default for ApexMemConfig
impl Default for ApexMemConfig
Source§fn default() -> ApexMemConfig
fn default() -> ApexMemConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApexMemConfigwhere
ApexMemConfig: Default,
impl<'de> Deserialize<'de> for ApexMemConfigwhere
ApexMemConfig: Default,
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
Source§impl JsonSchema for ApexMemConfig
impl JsonSchema for ApexMemConfig
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ApexMemConfig
impl RefUnwindSafe for ApexMemConfig
impl Send for ApexMemConfig
impl Sync for ApexMemConfig
impl Unpin for ApexMemConfig
impl UnsafeUnpin for ApexMemConfig
impl UnwindSafe for ApexMemConfig
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