io: use clippy to ensure that methods are forwarded in adapters#711
Conversation
|
does it work if you put |
64fb23d to
3e52ec7
Compare
Yes. However, it doesn't make sense for some impls, such as |
|
seems clippy is angry about std impls now |
I always forgot to pass |
3e92b16 to
2b72166
Compare
This adds
deny(clippy::missing_trait_methods)onimplthat must forward calls to the underlying type. This will avoid issues I fixed #705, #703, #701, and #700.This allowed me to catch a miss.