pub struct AgenticMemoryKgProjectionBundle<T> {
pub records_input: Node<Vec<AgenticMemoryRecord<T>>>,
pub drafts_input: Node<Vec<AgenticMemoryKgAssertionDraft>>,
pub snapshot: Node<AgenticMemoryKgProjectionSnapshot>,
pub assertions: Node<Vec<KnowledgeAssertion>>,
pub status: Node<AgenticMemoryKgProjectionStatus>,
pub errors: Node<Vec<AgenticMemoryError>>,
pub cursor: Node<AgenticMemoryKgProjectionCursor>,
}Expand description
AgenticMemoryKgProjectionBundle data container.
Fields§
§records_input: Node<Vec<AgenticMemoryRecord<T>>>records_input field for records input.
drafts_input: Node<Vec<AgenticMemoryKgAssertionDraft>>drafts_input field for drafts input.
snapshot: Node<AgenticMemoryKgProjectionSnapshot>snapshot field for snapshot.
assertions: Node<Vec<KnowledgeAssertion>>assertions field for assertions.
status: Node<AgenticMemoryKgProjectionStatus>status field for status.
errors: Node<Vec<AgenticMemoryError>>errors field for errors.
cursor: Node<AgenticMemoryKgProjectionCursor>cursor field for cursor.
Trait Implementations§
Source§impl<T: Clone> Clone for AgenticMemoryKgProjectionBundle<T>
impl<T: Clone> Clone for AgenticMemoryKgProjectionBundle<T>
Source§fn clone(&self) -> AgenticMemoryKgProjectionBundle<T>
fn clone(&self) -> AgenticMemoryKgProjectionBundle<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 AgenticMemoryKgProjectionBundle<T>
impl<T> !RefUnwindSafe for AgenticMemoryKgProjectionBundle<T>
impl<T> !Send for AgenticMemoryKgProjectionBundle<T>
impl<T> !Sync for AgenticMemoryKgProjectionBundle<T>
impl<T> Unpin for AgenticMemoryKgProjectionBundle<T>where
T: Unpin,
impl<T> UnsafeUnpin for AgenticMemoryKgProjectionBundle<T>
impl<T> !UnwindSafe for AgenticMemoryKgProjectionBundle<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