pub struct DetectDuplicatesResponse {
pub duplicates: Vec<DuplicateGroup>,
pub total: usize,
pub has_more: bool,
}Expand description
Response from duplicate entity detection
Fields§
§duplicates: Vec<DuplicateGroup>Groups where count > 1
total: usizeTotal number of duplicate groups found
has_more: boolWhether more results are available
Trait Implementations§
Source§impl Debug for DetectDuplicatesResponse
impl Debug for DetectDuplicatesResponse
Auto Trait Implementations§
impl Freeze for DetectDuplicatesResponse
impl RefUnwindSafe for DetectDuplicatesResponse
impl Send for DetectDuplicatesResponse
impl Sync for DetectDuplicatesResponse
impl Unpin for DetectDuplicatesResponse
impl UnsafeUnpin for DetectDuplicatesResponse
impl UnwindSafe for DetectDuplicatesResponse
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