pub struct AgenticMemoryBundle<T> {Show 15 fields
pub records_input: Node<Vec<AgenticMemoryRecord<T>>>,
pub query_input: Node<MemoryRetrievalQuery>,
pub projection: Node<AgenticMemoryProjection<T>>,
pub retrieval: MemoryRetrievalBundle<T>,
pub retrieval_snapshot: Node<MemoryRetrievalSnapshot<T>>,
pub retrieval_status: Node<MemoryRetrievalStatus>,
pub retrieval_errors: Node<Vec<MemoryRetrievalError>>,
pub fragments: Node<Vec<MemoryFragment<T>>>,
pub sources: Node<Vec<AgenticMemorySourceProjection>>,
pub indexed: Node<MemoryRetrievalIndex<T>>,
pub ranked: Node<MemoryAnswer<T>>,
pub context: Node<AgenticMemoryContext<T>>,
pub status: Node<AgenticMemoryStatus>,
pub errors: Node<Vec<AgenticMemoryError>>,
pub cursor: Node<AgenticMemoryCursor>,
}Expand description
AgenticMemoryBundle data container.
Fields§
§records_input: Node<Vec<AgenticMemoryRecord<T>>>records_input field for records input.
query_input: Node<MemoryRetrievalQuery>query_input field for query input.
projection: Node<AgenticMemoryProjection<T>>projection field for projection.
retrieval: MemoryRetrievalBundle<T>retrieval field for retrieval.
retrieval_snapshot: Node<MemoryRetrievalSnapshot<T>>retrieval_snapshot field for retrieval snapshot.
retrieval_status: Node<MemoryRetrievalStatus>retrieval_status field for retrieval status.
retrieval_errors: Node<Vec<MemoryRetrievalError>>retrieval_errors field for retrieval errors.
fragments: Node<Vec<MemoryFragment<T>>>fragments field for fragments.
sources: Node<Vec<AgenticMemorySourceProjection>>sources field for sources.
indexed: Node<MemoryRetrievalIndex<T>>indexed field for indexed.
ranked: Node<MemoryAnswer<T>>ranked field for ranked.
context: Node<AgenticMemoryContext<T>>context field for context.
status: Node<AgenticMemoryStatus>status field for status.
errors: Node<Vec<AgenticMemoryError>>errors field for errors.
cursor: Node<AgenticMemoryCursor>cursor field for cursor.
Trait Implementations§
Source§impl<T: Clone> Clone for AgenticMemoryBundle<T>
impl<T: Clone> Clone for AgenticMemoryBundle<T>
Source§fn clone(&self) -> AgenticMemoryBundle<T>
fn clone(&self) -> AgenticMemoryBundle<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for AgenticMemoryBundle<T>
impl<T> !RefUnwindSafe for AgenticMemoryBundle<T>
impl<T> !Send for AgenticMemoryBundle<T>
impl<T> !Sync for AgenticMemoryBundle<T>
impl<T> Unpin for AgenticMemoryBundle<T>where
T: Unpin,
impl<T> UnsafeUnpin for AgenticMemoryBundle<T>
impl<T> !UnwindSafe for AgenticMemoryBundle<T>
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