pub struct ExtractedMemory {
pub id: String,
pub kind: MemoryKind,
pub summary: String,
pub normalized_text: String,
pub event_kind: EventKind,
pub source_line_number: usize,
pub source_timestamp: Option<String>,
pub evidence_text: String,
}Fields§
§id: String§kind: MemoryKind§summary: String§normalized_text: String§event_kind: EventKind§source_line_number: usize§source_timestamp: Option<String>§evidence_text: StringTrait Implementations§
Source§impl Clone for ExtractedMemory
impl Clone for ExtractedMemory
Source§fn clone(&self) -> ExtractedMemory
fn clone(&self) -> ExtractedMemory
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 Debug for ExtractedMemory
impl Debug for ExtractedMemory
Source§impl PartialEq for ExtractedMemory
impl PartialEq for ExtractedMemory
impl Eq for ExtractedMemory
impl StructuralPartialEq for ExtractedMemory
Auto Trait Implementations§
impl Freeze for ExtractedMemory
impl RefUnwindSafe for ExtractedMemory
impl Send for ExtractedMemory
impl Sync for ExtractedMemory
impl Unpin for ExtractedMemory
impl UnsafeUnpin for ExtractedMemory
impl UnwindSafe for ExtractedMemory
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