···10601060 // if we have a full page, and we're inserting a *new* key less than
10611061 // the current max, then we can evict the current max
10621062 let mut should_evict = false;
10631063- let entry = grouped_counts.entry(fwd_target.clone()).or_insert_with(|| {
10631063+ let entry = grouped_counts.entry(fwd_target).or_insert_with(|| {
10641064 // this is a *new* key, so kick the max if we're full
10651065 should_evict = page_is_full;
10661066 Default::default()