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.
Fields§
§total_chats: usizeTotal chats in the table.
total_duplicated: usizeChats deduplicated into canonical chats.
chats_with_no_handles: usizeChats with 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