pub struct AgenticMemoryKgProjectionSnapshot {
pub assertions: Vec<KnowledgeAssertion>,
pub status: AgenticMemoryKgProjectionStatus,
pub errors: Vec<AgenticMemoryError>,
pub cursor: AgenticMemoryKgProjectionCursor,
}Expand description
AgenticMemoryKgProjectionSnapshot data container.
Fields§
§assertions: Vec<KnowledgeAssertion>assertions field for assertions.
status: AgenticMemoryKgProjectionStatusstatus field for status.
errors: Vec<AgenticMemoryError>errors field for errors.
cursor: AgenticMemoryKgProjectionCursorcursor field for cursor.
Trait Implementations§
Source§impl Clone for AgenticMemoryKgProjectionSnapshot
impl Clone for AgenticMemoryKgProjectionSnapshot
Source§fn clone(&self) -> AgenticMemoryKgProjectionSnapshot
fn clone(&self) -> AgenticMemoryKgProjectionSnapshot
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 AgenticMemoryKgProjectionSnapshot
impl PartialEq for AgenticMemoryKgProjectionSnapshot
Source§fn eq(&self, other: &AgenticMemoryKgProjectionSnapshot) -> bool
fn eq(&self, other: &AgenticMemoryKgProjectionSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgenticMemoryKgProjectionSnapshot
Auto Trait Implementations§
impl Freeze for AgenticMemoryKgProjectionSnapshot
impl RefUnwindSafe for AgenticMemoryKgProjectionSnapshot
impl Send for AgenticMemoryKgProjectionSnapshot
impl Sync for AgenticMemoryKgProjectionSnapshot
impl Unpin for AgenticMemoryKgProjectionSnapshot
impl UnsafeUnpin for AgenticMemoryKgProjectionSnapshot
impl UnwindSafe for AgenticMemoryKgProjectionSnapshot
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