pub struct MemoryAwareSearchResult {
pub memory: Memory,
pub base_similarity_score: f32,
pub consolidation_boost: f64,
pub final_score: f64,
pub is_insight: bool,
pub is_recently_consolidated: bool,
pub lineage: Option<MemoryLineage>,
pub boost_explanation: Option<BoostExplanation>,
pub cache_hit: bool,
}Expand description
Enhanced search result with memory-aware features
Fields§
§memory: Memory§base_similarity_score: f32§consolidation_boost: f64§final_score: f64§is_insight: bool§is_recently_consolidated: bool§lineage: Option<MemoryLineage>§boost_explanation: Option<BoostExplanation>§cache_hit: boolTrait Implementations§
Source§impl Clone for MemoryAwareSearchResult
impl Clone for MemoryAwareSearchResult
Source§fn clone(&self) -> MemoryAwareSearchResult
fn clone(&self) -> MemoryAwareSearchResult
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 MemoryAwareSearchResult
impl Debug for MemoryAwareSearchResult
Source§impl<'de> Deserialize<'de> for MemoryAwareSearchResult
impl<'de> Deserialize<'de> for MemoryAwareSearchResult
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 MemoryAwareSearchResult
impl RefUnwindSafe for MemoryAwareSearchResult
impl Send for MemoryAwareSearchResult
impl Sync for MemoryAwareSearchResult
impl Unpin for MemoryAwareSearchResult
impl UnwindSafe for MemoryAwareSearchResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more