pub struct DuplicateGroup {
pub key: Value,
pub entity_ids: Vec<String>,
pub count: usize,
}Expand description
A group of entities that share the same payload field values
Fields§
§key: ValueThe shared field values that define this group
entity_ids: Vec<String>Entity IDs in this group
count: usizeNumber of entities in this group
Trait Implementations§
Source§impl Debug for DuplicateGroup
impl Debug for DuplicateGroup
Auto Trait Implementations§
impl Freeze for DuplicateGroup
impl RefUnwindSafe for DuplicateGroup
impl Send for DuplicateGroup
impl Sync for DuplicateGroup
impl Unpin for DuplicateGroup
impl UnsafeUnpin for DuplicateGroup
impl UnwindSafe for DuplicateGroup
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