pub struct AgenticMemoryContextPackingBundle<T> {
pub context_input: Node<AgenticMemoryContext<T>>,
pub texts_input: Node<Vec<AgenticMemoryTextProjection>>,
pub policy_input: Node<AgenticMemoryContextPackingPolicy>,
pub snapshot: Node<AgenticMemoryContextPackingSnapshot>,
pub packed_context: Node<AgenticMemoryPackedContext>,
pub status: Node<AgenticMemoryContextPackingStatus>,
pub errors: Node<Vec<AgenticMemoryError>>,
pub cursor: Node<AgenticMemoryContextPackingCursor>,
}Expand description
AgenticMemoryContextPackingBundle data container.
Fields§
§context_input: Node<AgenticMemoryContext<T>>context_input field for context input.
texts_input: Node<Vec<AgenticMemoryTextProjection>>texts_input field for texts input.
policy_input: Node<AgenticMemoryContextPackingPolicy>policy_input field for policy input.
snapshot: Node<AgenticMemoryContextPackingSnapshot>snapshot field for snapshot.
packed_context: Node<AgenticMemoryPackedContext>packed_context field for packed context.
status: Node<AgenticMemoryContextPackingStatus>status field for status.
errors: Node<Vec<AgenticMemoryError>>errors field for errors.
cursor: Node<AgenticMemoryContextPackingCursor>cursor field for cursor.
Trait Implementations§
Source§impl<T: Clone> Clone for AgenticMemoryContextPackingBundle<T>
impl<T: Clone> Clone for AgenticMemoryContextPackingBundle<T>
Source§fn clone(&self) -> AgenticMemoryContextPackingBundle<T>
fn clone(&self) -> AgenticMemoryContextPackingBundle<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 AgenticMemoryContextPackingBundle<T>
impl<T> !RefUnwindSafe for AgenticMemoryContextPackingBundle<T>
impl<T> !Send for AgenticMemoryContextPackingBundle<T>
impl<T> !Sync for AgenticMemoryContextPackingBundle<T>
impl<T> Unpin for AgenticMemoryContextPackingBundle<T>where
T: Unpin,
impl<T> UnsafeUnpin for AgenticMemoryContextPackingBundle<T>
impl<T> !UnwindSafe for AgenticMemoryContextPackingBundle<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