pub struct MemoryRoiEntry {
pub memory_id: String,
pub kind: String,
pub text_head: String,
pub citation_count: u64,
pub estimated_saved_tokens: u64,
}Expand description
Per-memory ROI entry for kimetsu brain roi --top.
Fields§
§memory_id: String§kind: String§text_head: StringFirst ~80 chars of the memory text (for human readability).
citation_count: u64Total number of times this memory has been cited in the window.
estimated_saved_tokens: u64Estimated tokens saved by this memory’s citations.
Trait Implementations§
Source§impl Clone for MemoryRoiEntry
impl Clone for MemoryRoiEntry
Source§fn clone(&self) -> MemoryRoiEntry
fn clone(&self) -> MemoryRoiEntry
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 MemoryRoiEntry
impl Debug for MemoryRoiEntry
Auto Trait Implementations§
impl Freeze for MemoryRoiEntry
impl RefUnwindSafe for MemoryRoiEntry
impl Send for MemoryRoiEntry
impl Sync for MemoryRoiEntry
impl Unpin for MemoryRoiEntry
impl UnsafeUnpin for MemoryRoiEntry
impl UnwindSafe for MemoryRoiEntry
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