Hi,
I'm wrapping a type in order to add some information to track when one specific method of this type is called.
Is there a way to Deref all the calls but this one method? I know it sounds like overriding a struct's method and that's not possible in Rust, but maybe I'm missing a pattern or some stuff I don't know yet about Rust
Otherwise I'll need to manually wrap all the methods of the struct…