pub struct AgenticMemoryContext<T> {
pub state: AgenticMemoryStatusState,
pub query: MemoryRetrievalQuery,
pub entries: Vec<AgenticMemoryContextEntry<T>>,
pub cursor: AgenticMemoryCursor,
pub errors: Vec<AgenticMemoryError>,
pub retrieval_status: MemoryRetrievalStatus,
pub retrieval_errors: Vec<MemoryRetrievalError>,
pub context_ready: bool,
}Expand description
AgenticMemoryContext data container.
Fields§
§state: AgenticMemoryStatusStatestate field for state.
query: MemoryRetrievalQueryquery field for query.
entries: Vec<AgenticMemoryContextEntry<T>>entries field for entries.
cursor: AgenticMemoryCursorcursor field for cursor.
errors: Vec<AgenticMemoryError>errors field for errors.
retrieval_status: MemoryRetrievalStatusretrieval_status field for retrieval status.
retrieval_errors: Vec<MemoryRetrievalError>retrieval_errors field for retrieval errors.
context_ready: boolcontext_ready field for context ready.
Trait Implementations§
Source§impl<T: Clone> Clone for AgenticMemoryContext<T>
impl<T: Clone> Clone for AgenticMemoryContext<T>
Source§fn clone(&self) -> AgenticMemoryContext<T>
fn clone(&self) -> AgenticMemoryContext<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 moreSource§impl<T: Debug> Debug for AgenticMemoryContext<T>
impl<T: Debug> Debug for AgenticMemoryContext<T>
Source§impl<T: PartialEq> PartialEq for AgenticMemoryContext<T>
impl<T: PartialEq> PartialEq for AgenticMemoryContext<T>
impl<T> StructuralPartialEq for AgenticMemoryContext<T>
Auto Trait Implementations§
impl<T> Freeze for AgenticMemoryContext<T>
impl<T> RefUnwindSafe for AgenticMemoryContext<T>where
T: RefUnwindSafe,
impl<T> Send for AgenticMemoryContext<T>where
T: Send,
impl<T> Sync for AgenticMemoryContext<T>where
T: Sync,
impl<T> Unpin for AgenticMemoryContext<T>where
T: Unpin,
impl<T> UnsafeUnpin for AgenticMemoryContext<T>
impl<T> UnwindSafe for AgenticMemoryContext<T>where
T: UnwindSafe,
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