pub struct SessionMemory {
pub agent_id: String,
pub thread_id: String,
pub session_summary: String,
pub key_insights: Vec<String>,
pub important_facts: Vec<String>,
pub timestamp: DateTime<Utc>,
}Fields§
§agent_id: String§thread_id: String§session_summary: String§key_insights: Vec<String>§important_facts: Vec<String>§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for SessionMemory
impl Clone for SessionMemory
Source§fn clone(&self) -> SessionMemory
fn clone(&self) -> SessionMemory
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 Freeze for SessionMemory
impl RefUnwindSafe for SessionMemory
impl Send for SessionMemory
impl Sync for SessionMemory
impl Unpin for SessionMemory
impl UnsafeUnpin for SessionMemory
impl UnwindSafe for SessionMemory
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