pub struct AgenticMemoryRetentionSnapshot<T> {
pub active_records: Vec<AgenticMemoryRecord<T>>,
pub archived_records: Vec<AgenticMemoryRecord<T>>,
pub consolidation_requests: Vec<AgenticMemoryConsolidationRequest>,
pub status: AgenticMemoryRetentionStatus,
pub errors: Vec<AgenticMemoryError>,
pub cursor: AgenticMemoryRetentionCursor,
}Expand description
AgenticMemoryRetentionSnapshot data container.
Fields§
§active_records: Vec<AgenticMemoryRecord<T>>active_records field for active records.
archived_records: Vec<AgenticMemoryRecord<T>>archived_records field for archived records.
consolidation_requests: Vec<AgenticMemoryConsolidationRequest>consolidation_requests field for consolidation requests.
status: AgenticMemoryRetentionStatusstatus field for status.
errors: Vec<AgenticMemoryError>errors field for errors.
cursor: AgenticMemoryRetentionCursorcursor field for cursor.
Trait Implementations§
Source§impl<T: Clone> Clone for AgenticMemoryRetentionSnapshot<T>
impl<T: Clone> Clone for AgenticMemoryRetentionSnapshot<T>
Source§fn clone(&self) -> AgenticMemoryRetentionSnapshot<T>
fn clone(&self) -> AgenticMemoryRetentionSnapshot<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 AgenticMemoryRetentionSnapshot<T>
impl<T: Debug> Debug for AgenticMemoryRetentionSnapshot<T>
Source§impl<T: PartialEq> PartialEq for AgenticMemoryRetentionSnapshot<T>
impl<T: PartialEq> PartialEq for AgenticMemoryRetentionSnapshot<T>
Source§fn eq(&self, other: &AgenticMemoryRetentionSnapshot<T>) -> bool
fn eq(&self, other: &AgenticMemoryRetentionSnapshot<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for AgenticMemoryRetentionSnapshot<T>
Auto Trait Implementations§
impl<T> Freeze for AgenticMemoryRetentionSnapshot<T>
impl<T> RefUnwindSafe for AgenticMemoryRetentionSnapshot<T>where
T: RefUnwindSafe,
impl<T> Send for AgenticMemoryRetentionSnapshot<T>where
T: Send,
impl<T> Sync for AgenticMemoryRetentionSnapshot<T>where
T: Sync,
impl<T> Unpin for AgenticMemoryRetentionSnapshot<T>where
T: Unpin,
impl<T> UnsafeUnpin for AgenticMemoryRetentionSnapshot<T>
impl<T> UnwindSafe for AgenticMemoryRetentionSnapshot<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