vcombey / fallible_collections

impl fallible collections in rust, quite as describe in RFC 2116
Apache License 2.0
33 stars 14 forks source link

Implement common traits per Rust API guidelines #48

Open axelkar opened 5 months ago

axelkar commented 5 months ago

Implement PartialEq and Eq for TryHashMap and Debug, PartialEq, Eq, PartialOrd and Ord for TryBox.

https://rust-lang.github.io/api-guidelines/interoperability.html#types-eagerly-implement-common-traits-c-common-traits

axelkar commented 5 months ago

Oh and in addition, Index would be nice to have on TryHashMap.