pub struct AgenticMemoryContextPackingSnapshot {
pub packed_context: AgenticMemoryPackedContext,
pub status: AgenticMemoryContextPackingStatus,
pub errors: Vec<AgenticMemoryError>,
pub cursor: AgenticMemoryContextPackingCursor,
}Expand description
AgenticMemoryContextPackingSnapshot data container.
Fields§
§packed_context: AgenticMemoryPackedContextpacked_context field for packed context.
status: AgenticMemoryContextPackingStatusstatus field for status.
errors: Vec<AgenticMemoryError>errors field for errors.
cursor: AgenticMemoryContextPackingCursorcursor field for cursor.
Trait Implementations§
Source§impl Clone for AgenticMemoryContextPackingSnapshot
impl Clone for AgenticMemoryContextPackingSnapshot
Source§fn clone(&self) -> AgenticMemoryContextPackingSnapshot
fn clone(&self) -> AgenticMemoryContextPackingSnapshot
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 AgenticMemoryContextPackingSnapshot
impl PartialEq for AgenticMemoryContextPackingSnapshot
Source§fn eq(&self, other: &AgenticMemoryContextPackingSnapshot) -> bool
fn eq(&self, other: &AgenticMemoryContextPackingSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgenticMemoryContextPackingSnapshot
Auto Trait Implementations§
impl Freeze for AgenticMemoryContextPackingSnapshot
impl RefUnwindSafe for AgenticMemoryContextPackingSnapshot
impl Send for AgenticMemoryContextPackingSnapshot
impl Sync for AgenticMemoryContextPackingSnapshot
impl Unpin for AgenticMemoryContextPackingSnapshot
impl UnsafeUnpin for AgenticMemoryContextPackingSnapshot
impl UnwindSafe for AgenticMemoryContextPackingSnapshot
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