robclu / leapfrog

Lock-free concurrent and single-threaded hash map implementations using Leapfrog probing. Currently the highest performance concurrent HashMap in Rust for certain use cases.
Apache License 2.0
206 stars 9 forks source link

Requirement of trait Copy #9

Open ple1n opened 1 year ago

ple1n commented 1 year ago

I find it a bit hard to use as it requires Copy. My structs contain Strings which can not be Copy.

robclu commented 1 year ago

Hi,

Yeah it's a little annoying to use with Strings at the moment. I'm intending to improve the API for Strings when I get some time.