pub struct DedupDrop {
pub dropped: FrameId,
pub kept: FrameId,
}Expand description
One frame dropped by dedup_cross_provider as a cross-provider duplicate,
paired with the identity of the frame that absorbed it.
Fields§
§dropped: FrameIdThe identity that was collapsed away.
kept: FrameIdThe surviving identity it was merged into (the higher-scored frame).
Trait Implementations§
impl Eq for DedupDrop
impl StructuralPartialEq for DedupDrop
Auto Trait Implementations§
impl Freeze for DedupDrop
impl RefUnwindSafe for DedupDrop
impl Send for DedupDrop
impl Sync for DedupDrop
impl Unpin for DedupDrop
impl UnsafeUnpin for DedupDrop
impl UnwindSafe for DedupDrop
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