KokaKiwi / rust-hex

A basic crate to encode values to hexadecimal representation. Originally extracted from rustc-serialize.
https://crates.io/crates/hex
Apache License 2.0
201 stars 55 forks source link

`hex::FromHex::Error` does not implement `Eq` #76

Open tcharding opened 1 year ago

tcharding commented 1 year ago

Is there some reason why FromHexError does not derive Eq? It seems common in the Rust std lib to do so, here are a bunch of example errors that do so: https://doc.rust-lang.org/std/cmp/trait.Eq.html

Happy to do a PR but its so trivial I thought there might be some reason I can't work out.

Thanks

nouritsu commented 1 year ago

Are there plans to work on this?