pub struct MemoryRecallReady {
pub thread_id: ThreadId,
pub turn_id: TurnId,
pub citations: Vec<MemoryCitation>,
pub timestamp: OffsetDateTime,
}Fields§
§thread_id: ThreadId§turn_id: TurnId§citations: Vec<MemoryCitation>§timestamp: OffsetDateTimeTrait Implementations§
Source§impl Clone for MemoryRecallReady
impl Clone for MemoryRecallReady
Source§fn clone(&self) -> MemoryRecallReady
fn clone(&self) -> MemoryRecallReady
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MemoryRecallReady
impl Debug for MemoryRecallReady
Source§impl<'de> Deserialize<'de> for MemoryRecallReady
impl<'de> Deserialize<'de> for MemoryRecallReady
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MemoryRecallReady
impl RefUnwindSafe for MemoryRecallReady
impl Send for MemoryRecallReady
impl Sync for MemoryRecallReady
impl Unpin for MemoryRecallReady
impl UnsafeUnpin for MemoryRecallReady
impl UnwindSafe for MemoryRecallReady
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