Thoughts on making Encoder/Decoder traits public?
rukai opened this issue · 1 comments
rukai commented
I want to reimplement certain encoders/decoders to improve performance by skipping parts I dont need.
It would be nice to be able to reuse some Encoder/Decoder implementations on types like VarInt, but that is currently impossible even though VarInt is public since the Encoder and Decoder traits are private.
Any chance of them being made public?
rukai commented
Hmm I was able to just use other crates for VarInt because its a common encoding: https://docs.rs/integer-encoding/latest/integer_encoding/trait.VarInt.html
So if making them public is a problem for maintainability dont worry about it and just close this issue.