pub struct TraceRepairReport {
pub daemon_events_deleted: usize,
pub open_logs_retired: usize,
pub selected_before: i64,
pub selected_after: i64,
}Expand description
Outcome of KnowledgeBase::repair_traces.
Fields§
§daemon_events_deleted: usizeselected/retrieved usage events deleted (daemon recalls that never
injected their knowledge into a model context).
open_logs_retired: usizeopen episodic logs retired to discarded (daemon session traces +
no-answer recalls that would otherwise sit in the open/distill pool).
selected_before: i64Total selected_count across non-spark chunks before the repair.
selected_after: i64Total selected_count across non-spark chunks after the repair.
Trait Implementations§
Source§impl Clone for TraceRepairReport
impl Clone for TraceRepairReport
Source§fn clone(&self) -> TraceRepairReport
fn clone(&self) -> TraceRepairReport
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 TraceRepairReport
impl Debug for TraceRepairReport
Source§impl Default for TraceRepairReport
impl Default for TraceRepairReport
Source§fn default() -> TraceRepairReport
fn default() -> TraceRepairReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TraceRepairReport
impl RefUnwindSafe for TraceRepairReport
impl Send for TraceRepairReport
impl Sync for TraceRepairReport
impl Unpin for TraceRepairReport
impl UnsafeUnpin for TraceRepairReport
impl UnwindSafe for TraceRepairReport
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