pub struct ChatHandleDiagnostic {
pub total_chats: usize,
pub total_duplicated: usize,
pub chats_with_no_handles: usize,
}Expand description
Diagnostic data for chat-handle relationships (thread/chat deduplication)
Fields§
§total_chats: usizeThe total number of chats in the table
total_duplicated: usizeThe number of chats that were deduplicated
chats_with_no_handles: usizeThe number of chats that have messages but no associated handles
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChatHandleDiagnostic
impl RefUnwindSafe for ChatHandleDiagnostic
impl Send for ChatHandleDiagnostic
impl Sync for ChatHandleDiagnostic
impl Unpin for ChatHandleDiagnostic
impl UnsafeUnpin for ChatHandleDiagnostic
impl UnwindSafe for ChatHandleDiagnostic
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