pub struct RegretFlaggedMemory {
pub memory_id: String,
pub scope: String,
pub kind: String,
pub text_preview: String,
pub confidence: f32,
pub regret_count: u64,
pub use_count: u32,
pub usefulness_score: f32,
}Expand description
A memory flagged for review due to repeated retrieval regrets.
Fields§
§memory_id: String§scope: String§kind: String§text_preview: String§confidence: f32§regret_count: u64§use_count: u32§usefulness_score: f32Trait Implementations§
Source§impl Clone for RegretFlaggedMemory
impl Clone for RegretFlaggedMemory
Source§fn clone(&self) -> RegretFlaggedMemory
fn clone(&self) -> RegretFlaggedMemory
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 RegretFlaggedMemory
impl Debug for RegretFlaggedMemory
Auto Trait Implementations§
impl Freeze for RegretFlaggedMemory
impl RefUnwindSafe for RegretFlaggedMemory
impl Send for RegretFlaggedMemory
impl Sync for RegretFlaggedMemory
impl Unpin for RegretFlaggedMemory
impl UnsafeUnpin for RegretFlaggedMemory
impl UnwindSafe for RegretFlaggedMemory
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