Is there a reason so many public types don't implement the Debug trait? One downside of the missing impls is the extra work needed in dependent crates to implement Debug for their own types that contain lmdb-rs types.
This pull request adds a Debug implementation for every public type in lmdb-rs, as well as for a couple of private types that are contained within some of those public types.
Is there a reason so many public types don't implement the
Debug
trait? One downside of the missing impls is the extra work needed in dependent crates to implementDebug
for their own types that contain lmdb-rs types.This pull request adds a
Debug
implementation for every public type in lmdb-rs, as well as for a couple of private types that are contained within some of those public types.