pub struct RetrievalStats {
pub total_entries: usize,
pub keyword_matches: usize,
pub focus_matches: usize,
pub recent_entries: usize,
pub highly_important: usize,
pub frequently_used: usize,
pub avg_score: f32,
}Expand description
Retrieval statistics.
Fields§
§total_entries: usize§keyword_matches: usize§focus_matches: usize§recent_entries: usize§highly_important: usize§frequently_used: usize§avg_score: f32Trait Implementations§
Source§impl Clone for RetrievalStats
impl Clone for RetrievalStats
Source§fn clone(&self) -> RetrievalStats
fn clone(&self) -> RetrievalStats
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 RetrievalStats
impl RefUnwindSafe for RetrievalStats
impl Send for RetrievalStats
impl Sync for RetrievalStats
impl Unpin for RetrievalStats
impl UnsafeUnpin for RetrievalStats
impl UnwindSafe for RetrievalStats
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