Sometimes batch text editing is easier to do with something designed to edit text in bulk. Perhaps a sed comand will be easier to write than using an IDE tool.
Box<dyn Trait> lets you use traits without involving generics. This is really your best option if the type arguments and/or the code bloat of generics are problematic.
&dyn Trait also exists if you can have the object borrowed temporarily, and works with objects on the stack. Good option for function arguments.
You want the IDE to make important decisions about the logical structure of your code? Adding the generics is not just boilerplate text. It can make an important difference for individual methods to have a generic argument instead of the impl block. Once that decision has been made actually changing the text is mostly find-and-replace.