Hi, may I ask about using [`equivalent::Comparable`](https://docs.rs/equivalent/latest/equivalent/trait.Comparable.html) as lookup API trait bounds? It is something like what [`indexmap::IndexMap::get`](https://docs.rs/indexmap/latest/indexmap/map/struct.IndexMap.html#method.get) do. `K: Borrow<Q>` is quite limit for some scenarios, an example can be found here https://github.com/crossbeam-rs/crossbeam/issues/1133.
Hi, may I ask about using
equivalent::Comparableas lookup API trait bounds? It is something like whatindexmap::IndexMap::getdo.K: Borrow<Q>is quite limit for some scenarios, an example can be found here crossbeam-rs/crossbeam#1133.