contain-rs / linked-hash-map

A HashMap wrapper that holds key-value pairs in insertion order
https://contain-rs.github.io/linked-hash-map/linked_hash_map/
Apache License 2.0
169 stars 60 forks source link

Implement `SerializeAs<_>` trait #109

Open proudmuslim-dev opened 3 years ago

proudmuslim-dev commented 3 years ago

This trait not being implemented forces users to use a normal HashMap in places where many would seriously prefer to use a linked one. An example of this can be seen below image The dataset here has keys that change on every request, and not being able to iterate through it sequentially is a massive pain