pub struct HandleDiagnostic {
pub total_handles: usize,
pub handles_with_multiple_ids: Option<usize>,
pub total_duplicated: usize,
}Expand description
Diagnostic data for the handle table.
Fields§
§total_handles: usizeTotal handles in the table.
handles_with_multiple_ids: Option<usize>Distinct person_centric_id values, or None when the column is unavailable.
total_duplicated: usizeHandles deduplicated into canonical handles.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HandleDiagnostic
impl RefUnwindSafe for HandleDiagnostic
impl Send for HandleDiagnostic
impl Sync for HandleDiagnostic
impl Unpin for HandleDiagnostic
impl UnsafeUnpin for HandleDiagnostic
impl UnwindSafe for HandleDiagnostic
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