pub struct AgenticMemorySourceProjection {
pub fragment_id: FactId,
pub sources: Vec<FactId>,
pub parent_fragment_id: Option<FactId>,
pub provenance: Option<String>,
pub metadata: AgenticMemoryRecordMetadata,
}Expand description
AgenticMemorySourceProjection data container.
Fields§
§fragment_id: FactIdfragment_id field for fragment id.
sources: Vec<FactId>sources field for sources.
parent_fragment_id: Option<FactId>parent_fragment_id field for parent fragment id.
provenance: Option<String>provenance field for provenance.
metadata: AgenticMemoryRecordMetadatametadata field for metadata.
Trait Implementations§
Source§impl Clone for AgenticMemorySourceProjection
impl Clone for AgenticMemorySourceProjection
Source§fn clone(&self) -> AgenticMemorySourceProjection
fn clone(&self) -> AgenticMemorySourceProjection
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 PartialEq for AgenticMemorySourceProjection
impl PartialEq for AgenticMemorySourceProjection
Source§fn eq(&self, other: &AgenticMemorySourceProjection) -> bool
fn eq(&self, other: &AgenticMemorySourceProjection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgenticMemorySourceProjection
Auto Trait Implementations§
impl Freeze for AgenticMemorySourceProjection
impl RefUnwindSafe for AgenticMemorySourceProjection
impl Send for AgenticMemorySourceProjection
impl Sync for AgenticMemorySourceProjection
impl Unpin for AgenticMemorySourceProjection
impl UnsafeUnpin for AgenticMemorySourceProjection
impl UnwindSafe for AgenticMemorySourceProjection
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