pub struct MemoryRecallCandidate {
pub id: String,
pub title: String,
pub score: f64,
pub scope: MemoryScope,
pub project_key: Option<String>,
pub status: DurableMemoryStatus,
pub updated_at: String,
pub summary: String,
}Fields§
§id: String§title: String§score: f64§scope: MemoryScope§project_key: Option<String>§status: DurableMemoryStatus§updated_at: String§summary: StringTrait Implementations§
Source§impl Clone for MemoryRecallCandidate
impl Clone for MemoryRecallCandidate
Source§fn clone(&self) -> MemoryRecallCandidate
fn clone(&self) -> MemoryRecallCandidate
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 MemoryRecallCandidate
impl Debug for MemoryRecallCandidate
Source§impl PartialEq for MemoryRecallCandidate
impl PartialEq for MemoryRecallCandidate
Source§fn eq(&self, other: &MemoryRecallCandidate) -> bool
fn eq(&self, other: &MemoryRecallCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemoryRecallCandidate
Auto Trait Implementations§
impl Freeze for MemoryRecallCandidate
impl RefUnwindSafe for MemoryRecallCandidate
impl Send for MemoryRecallCandidate
impl Sync for MemoryRecallCandidate
impl Unpin for MemoryRecallCandidate
impl UnsafeUnpin for MemoryRecallCandidate
impl UnwindSafe for MemoryRecallCandidate
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