pub struct MemSessionSummary {
pub summary_text: String,
pub score: f32,
}Expand description
A cross-session summary search result used by context assembly.
Fields§
§summary_text: StringSummary text from the matched session.
score: f32Similarity score in [0, 1].
Trait Implementations§
Source§impl Clone for MemSessionSummary
impl Clone for MemSessionSummary
Source§fn clone(&self) -> MemSessionSummary
fn clone(&self) -> MemSessionSummary
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 moreAuto Trait Implementations§
impl Freeze for MemSessionSummary
impl RefUnwindSafe for MemSessionSummary
impl Send for MemSessionSummary
impl Sync for MemSessionSummary
impl Unpin for MemSessionSummary
impl UnsafeUnpin for MemSessionSummary
impl UnwindSafe for MemSessionSummary
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