···1060 // if we have a full page, and we're inserting a *new* key less than
1061 // the current max, then we can evict the current max
1062 let mut should_evict = false;
1063- let entry = grouped_counts.entry(fwd_target.clone()).or_insert_with(|| {
1064 // this is a *new* key, so kick the max if we're full
1065 should_evict = page_is_full;
1066 Default::default()
···1060 // if we have a full page, and we're inserting a *new* key less than
1061 // the current max, then we can evict the current max
1062 let mut should_evict = false;
1063+ let entry = grouped_counts.entry(fwd_target).or_insert_with(|| {
1064 // this is a *new* key, so kick the max if we're full
1065 should_evict = page_is_full;
1066 Default::default()