billyrieger / bimap-rs

Generic bijective maps in Rust
Apache License 2.0
129 stars 26 forks source link

Iter not Send + Sync #46

Open ede1998 opened 1 month ago

ede1998 commented 1 month ago

I just stumbled over this issue: The Iter type created by into_iter() etc. is not Send/Sync which makes it hard to use with async code.

I think it should be sound to mark the type as Send and Sync with the same reasoning would be as in #1.